diff --git a/src/rougail/output_doc/output/github.py b/src/rougail/output_doc/output/github.py index 723a137d1..26b0ac694 100644 --- a/src/rougail/output_doc/output/github.py +++ b/src/rougail/output_doc/output/github.py @@ -20,6 +20,7 @@ from typing import List from html import escape from ..utils import dump, CommonFormatter +from ..i18n import _ class Formatter(CommonFormatter): @@ -153,17 +154,22 @@ class Formatter(CommonFormatter): def to_phrase(self, text: str) -> str: return escape(text) - def family_to_string(self, *args, **kwargs) -> List[str]: - lst = super().family_to_string(*args, **kwargs) - if self.name != 'github': - return lst - ret = lst.pop(0) - if lst: - content = "\n".join([l.strip() for l in lst]).strip() - ret += "\n\n| Informations |\n" - ret += "|:------------|\n" - ret += "| " + content.replace("\n", "
") + " |\n\n" - return [ret] + def family_informations(self) -> str: + info = self.bold(f"๐Ÿ›ˆ {_('Informations')}") # โ„น๏ธ + return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n" - def after_family_properties(self) -> str: - return "
" + def family_informations_starts_line(self, line: str) -> str: + return "> " + line + + def family_informations_ends_line(self) -> str: + return "\\\n" +# +# def family_to_string(self, *args, **kwargs) -> List[str]: +# lst = super().family_to_string(*args, **kwargs) +# if self.name != 'github': +# return lst +# # remove the title +# ret = lst.pop(0) +# if lst: +# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n" +# return [ret] diff --git a/src/rougail/output_doc/output/gitlab.py b/src/rougail/output_doc/output/gitlab.py index 6fc4d88e5..6bd058b44 100644 --- a/src/rougail/output_doc/output/gitlab.py +++ b/src/rougail/output_doc/output/gitlab.py @@ -70,10 +70,10 @@ class Formatter(GithubFormatter): def end_family_informations(self) -> str: return f"\n>>>\n" - def after_family_paths(self) -> str: - return "
" + def family_informations_starts_line(self, line: str) -> str: + return line - def after_family_properties(self) -> str: + def family_informations_ends_line(self) -> str: return "
" def table_header(self, lst): diff --git a/src/rougail/output_doc/utils.py b/src/rougail/output_doc/utils.py index c92df4234..b142dfd09 100644 --- a/src/rougail/output_doc/utils.py +++ b/src/rougail/output_doc/utils.py @@ -310,12 +310,6 @@ class CommonFormatter: ret_paths.append(self.bold(self.anchor(path, path))) return ret_paths - def after_family_paths(self) -> str: - return ENTER - - def after_family_properties(self) -> str: - return ENTER - def table_header( self, lst: list, @@ -356,11 +350,12 @@ class CommonFormatter: informations = value["informations"] msg.append(self.namespace_to_title(informations, ori_level)) msg.append(self.family_informations()) - msg.extend(self.display_paths(informations, {}, None)) - msg.append(self.after_family_paths()) + msg.append(self.family_informations_ends_line().join([self.family_informations_starts_line(p) for p in self.display_paths(informations, {}, None)])) + msg.append(self.family_informations_ends_line()) msg.append( - self.property_to_string(informations, {}, {})[1] + ENTER + self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1]) + self.family_informations_ends_line() ) + print(msg) msg.append(self.end_family_informations()) msg.extend(self.dict_to_dict(value["children"], level)) msg.append(self.end_namespace(ori_level)) @@ -394,12 +389,13 @@ class CommonFormatter: def family_to_string(self, informations: dict, level: int) -> str: """manage other family type""" + ret = [self.title(self.get_description("family", informations, {}, None), level)] msg = [] fam_info = self.family_informations() if fam_info: - msg.append(fam_info) + ret.append(fam_info) msg.append( - self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths() + self.join(self.display_paths(informations, {}, None)) ) helps = informations.get("help") if helps: @@ -410,16 +406,20 @@ class CommonFormatter: if property_str: msg.append(property_str) if calculated_properties: - msg.append( - self.join(calculated_properties) + msg.append(self.join(calculated_properties) ) if "identifier" in informations: msg.append( - self.section(_("Identifiers"), informations["identifier"]) + self.section(_("Identifiers"), informations["identifier"], type_="family") ) - return [self.title(self.get_description("family", informations, {}, None), level), - self.after_family_properties().join(msg) + self.end_family_informations(), - ] + ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in msg]) + self.end_family_informations()) + return ret + + def family_informations_starts_line(self, line: str) -> str: + return line + + def family_informations_ends_line(self) -> str: + return ENTER def end_family(self, level: int) -> str: return "" @@ -537,7 +537,7 @@ class CommonFormatter: ) -> list: """Collect string for the first column""" multi, properties = self.property_to_string( - informations, calculated_properties, modified_attributes + informations, calculated_properties, modified_attributes, ) first_col = [ self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)), @@ -881,6 +881,7 @@ class CommonFormatter: name: str, msg: str, submessage: str = "", + type_ = "variable", ) -> str: """Return something like Name: msg""" submessage, msg = self.message_to_string(msg, submessage) diff --git a/tests/results/test/00_0version_underscore.adoc b/tests/results/test/00_0version_underscore.adoc index 87e2649f4..c6e04cc34 100644 --- a/tests/results/test/00_0version_underscore.adoc +++ b/tests/results/test/00_0version_underscore.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/00_1empty_variable.adoc b/tests/results/test/00_1empty_variable.adoc index d2760e58f..eaa320976 100644 --- a/tests/results/test/00_1empty_variable.adoc +++ b/tests/results/test/00_1empty_variable.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test/00_2default_calculated.adoc b/tests/results/test/00_2default_calculated.adoc index 483cdcd18..34b233614 100644 --- a/tests/results/test/00_2default_calculated.adoc +++ b/tests/results/test/00_2default_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test/00_2default_calculated_multi.adoc b/tests/results/test/00_2default_calculated_multi.adoc index b39e44836..ac7d04384 100644 --- a/tests/results/test/00_2default_calculated_multi.adoc +++ b/tests/results/test/00_2default_calculated_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test/00_2default_calculated_multi.sh b/tests/results/test/00_2default_calculated_multi.sh index 7f12a05ff..30eba9482 100644 --- a/tests/results/test/00_2default_calculated_multi.sh +++ b/tests/results/test/00_2default_calculated_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ diff --git a/tests/results/test/00_2default_calculated_params_permissive.adoc b/tests/results/test/00_2default_calculated_params_permissive.adoc index 10e508d74..98e6a9e0f 100644 --- a/tests/results/test/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test/00_2default_calculated_params_permissive.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/00_2default_calculated_variable.adoc b/tests/results/test/00_2default_calculated_variable.adoc index 47515c4c7..2938f600b 100644 --- a/tests/results/test/00_2default_calculated_variable.adoc +++ b/tests/results/test/00_2default_calculated_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test/00_2default_calculated_variable_description.adoc b/tests/results/test/00_2default_calculated_variable_description.adoc index 58472c864..5a16e4f24 100644 --- a/tests/results/test/00_2default_calculated_variable_description.adoc +++ b/tests/results/test/00_2default_calculated_variable_description.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test/00_2default_calculated_variable_description_multi_line.adoc index 08abd9cf2..ffec7edac 100644 --- a/tests/results/test/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test/00_2default_calculated_variable_description_multi_line.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test/00_2default_calculated_variable_transitive.adoc b/tests/results/test/00_2default_calculated_variable_transitive.adoc index a49c58023..d70667412 100644 --- a/tests/results/test/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test/00_2default_calculated_variable_transitive.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test/00_4load_subfolder.adoc b/tests/results/test/00_4load_subfolder.adoc index a9b343947..bc66be687 100644 --- a/tests/results/test/00_4load_subfolder.adoc +++ b/tests/results/test/00_4load_subfolder.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/00_5load_notype.adoc b/tests/results/test/00_5load_notype.adoc index c77e5be63..5c6bacb0f 100644 --- a/tests/results/test/00_5load_notype.adoc +++ b/tests/results/test/00_5load_notype.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test/00_6boolean.adoc b/tests/results/test/00_6boolean.adoc index 501de0b56..0bbab3b91 100644 --- a/tests/results/test/00_6boolean.adoc +++ b/tests/results/test/00_6boolean.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test/00_6boolean_no_mandatory.adoc b/tests/results/test/00_6boolean_no_mandatory.adoc index c3091dc74..0608c8a9f 100644 --- a/tests/results/test/00_6boolean_no_mandatory.adoc +++ b/tests/results/test/00_6boolean_no_mandatory.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test/00_6choice.adoc b/tests/results/test/00_6choice.adoc index 2de2594d5..08757104d 100644 --- a/tests/results/test/00_6choice.adoc +++ b/tests/results/test/00_6choice.adoc @@ -1,62 +1,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test/00_6choice.sh b/tests/results/test/00_6choice.sh index ac81b8c92..d1ed0be1c 100644 --- a/tests/results/test/00_6choice.sh +++ b/tests/results/test/00_6choice.sh @@ -3,38 +3,38 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6choice_calculation.adoc b/tests/results/test/00_6choice_calculation.adoc index 2cd6105e2..4756f850f 100644 --- a/tests/results/test/00_6choice_calculation.adoc +++ b/tests/results/test/00_6choice_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test/00_6choice_link.adoc b/tests/results/test/00_6choice_link.adoc index 8a3a5a441..0e0a536b5 100644 --- a/tests/results/test/00_6choice_link.adoc +++ b/tests/results/test/00_6choice_link.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test/00_6choice_link.sh b/tests/results/test/00_6choice_link.sh index 3b5802312..14c584acc 100644 --- a/tests/results/test/00_6choice_link.sh +++ b/tests/results/test/00_6choice_link.sh @@ -3,15 +3,15 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6choice_variable.adoc b/tests/results/test/00_6choice_variable.adoc index 4ee853f49..7aa1bd102 100644 --- a/tests/results/test/00_6choice_variable.adoc +++ b/tests/results/test/00_6choice_variable.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a |==== diff --git a/tests/results/test/00_6choice_variable.sh b/tests/results/test/00_6choice_variable.sh index 52b3ba890..bc5a1d488 100644 --- a/tests/results/test/00_6choice_variable.sh +++ b/tests/results/test/00_6choice_variable.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test/00_6choice_variable_link.adoc b/tests/results/test/00_6choice_variable_link.adoc index 463c10bcd..6082277f9 100644 --- a/tests/results/test/00_6choice_variable_link.adoc +++ b/tests/results/test/00_6choice_variable_link.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test/00_6choice_variable_link.sh b/tests/results/test/00_6choice_variable_link.sh index ee190fb56..07dcd298b 100644 --- a/tests/results/test/00_6choice_variable_link.sh +++ b/tests/results/test/00_6choice_variable_link.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test/00_6choice_variable_link2.adoc b/tests/results/test/00_6choice_variable_link2.adoc index d8b44b2ac..1f3f4dd5c 100644 --- a/tests/results/test/00_6choice_variable_link2.adoc +++ b/tests/results/test/00_6choice_variable_link2.adoc @@ -1,40 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a |==== == family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md index b86073a08..a318910a7 100644 --- a/tests/results/test/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test/00_6choice_variable_link2.gitlab.md @@ -5,9 +5,10 @@
family ->>> [!note] Informations -
**family**
`standard` ->>> +> [!note] Informations +> **family**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[`A second variable`](#var1)"
**Default**: the value of the variable "[`A first variable`](#var2)" | diff --git a/tests/results/test/00_6choice_variable_link2.md b/tests/results/test/00_6choice_variable_link2.md index e345b8cee..44262edca 100644 --- a/tests/results/test/00_6choice_variable_link2.md +++ b/tests/results/test/00_6choice_variable_link2.md @@ -5,11 +5,10 @@ # family - - -| Informations | -|:------------| -| **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 20c320fdf..b7ce118af 100644 --- a/tests/results/test/00_6choice_variable_link2.sh +++ b/tests/results/test/00_6choice_variable_link2.sh @@ -3,24 +3,21 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ”‚ โ”‚ Default: a โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - family - -family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/00_6custom.adoc b/tests/results/test/00_6custom.adoc index 999be5e41..9c2d734fd 100644 --- a/tests/results/test/00_6custom.adoc +++ b/tests/results/test/00_6custom.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test/00_6domainname.adoc b/tests/results/test/00_6domainname.adoc index ff8f80a5f..accb1877d 100644 --- a/tests/results/test/00_6domainname.adoc +++ b/tests/results/test/00_6domainname.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test/00_6domainname_params.adoc b/tests/results/test/00_6domainname_params.adoc index ed4d689c4..6bd078bbd 100644 --- a/tests/results/test/00_6domainname_params.adoc +++ b/tests/results/test/00_6domainname_params.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Validator**: the domain name can be an IP + **Default**: my.domain.name |==== diff --git a/tests/results/test/00_6float.adoc b/tests/results/test/00_6float.adoc index d917e9fa1..8d83ee40d 100644 --- a/tests/results/test/00_6float.adoc +++ b/tests/results/test/00_6float.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test/00_6integer.adoc b/tests/results/test/00_6integer.adoc index 5d3e9aed1..dc717b03b 100644 --- a/tests/results/test/00_6integer.adoc +++ b/tests/results/test/00_6integer.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test/00_6ip.adoc b/tests/results/test/00_6ip.adoc index 924b4c27b..2d81af0b8 100644 --- a/tests/results/test/00_6ip.adoc +++ b/tests/results/test/00_6ip.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -20,11 +14,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test/00_6ip.sh b/tests/results/test/00_6ip.sh index 16ccc9e4f..4cda9beda 100644 --- a/tests/results/test/00_6ip.sh +++ b/tests/results/test/00_6ip.sh @@ -7,8 +7,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test/00_6network.adoc b/tests/results/test/00_6network.adoc index 4374ab318..aa5030f98 100644 --- a/tests/results/test/00_6network.adoc +++ b/tests/results/test/00_6network.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test/00_6number.adoc b/tests/results/test/00_6number.adoc index 5d3e9aed1..dc717b03b 100644 --- a/tests/results/test/00_6number.adoc +++ b/tests/results/test/00_6number.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test/00_6port.adoc b/tests/results/test/00_6port.adoc index e33e12578..9d41fc661 100644 --- a/tests/results/test/00_6port.adoc +++ b/tests/results/test/00_6port.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -23,11 +17,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test/00_6port.sh b/tests/results/test/00_6port.sh index 057034b5d..f1866a0a0 100644 --- a/tests/results/test/00_6port.sh +++ b/tests/results/test/00_6port.sh @@ -3,31 +3,31 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6regexp.adoc b/tests/results/test/00_6regexp.adoc index 3a18e2138..c89f805e9 100644 --- a/tests/results/test/00_6regexp.adoc +++ b/tests/results/test/00_6regexp.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test/00_6regexp.sh b/tests/results/test/00_6regexp.sh index b4467a7ea..e61c2f0cb 100644 --- a/tests/results/test/00_6regexp.sh +++ b/tests/results/test/00_6regexp.sh @@ -7,6 +7,6 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6regexp_link.adoc b/tests/results/test/00_6regexp_link.adoc index 8342d5ffc..0319df65d 100644 --- a/tests/results/test/00_6regexp_link.adoc +++ b/tests/results/test/00_6regexp_link.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "var1" + **Examples**: diff --git a/tests/results/test/00_6regexp_link.sh b/tests/results/test/00_6regexp_link.sh index ce2e4928d..dcd126e27 100644 --- a/tests/results/test/00_6regexp_link.sh +++ b/tests/results/test/00_6regexp_link.sh @@ -7,8 +7,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -17,6 +17,6 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6secret.adoc b/tests/results/test/00_6secret.adoc index 400a4cac6..6434cc594 100644 --- a/tests/results/test/00_6secret.adoc +++ b/tests/results/test/00_6secret.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test/00_6secret_param.adoc b/tests/results/test/00_6secret_param.adoc index c6683bda7..1cea0a5d9 100644 --- a/tests/results/test/00_6secret_param.adoc +++ b/tests/results/test/00_6secret_param.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test/00_6secret_param.sh b/tests/results/test/00_6secret_param.sh index bcf6dbf70..1ea4c2dc7 100644 --- a/tests/results/test/00_6secret_param.sh +++ b/tests/results/test/00_6secret_param.sh @@ -7,15 +7,15 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_6string.adoc b/tests/results/test/00_6string.adoc index 9e8e27fe0..ed6bbbcce 100644 --- a/tests/results/test/00_6string.adoc +++ b/tests/results/test/00_6string.adoc @@ -1,50 +1,26 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test/00_7choice_quote.adoc b/tests/results/test/00_7choice_quote.adoc index b96dc5547..b0e6617fa 100644 --- a/tests/results/test/00_7choice_quote.adoc +++ b/tests/results/test/00_7choice_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test/00_7choice_quote.sh b/tests/results/test/00_7choice_quote.sh index 41ceccc33..fc4f15808 100644 --- a/tests/results/test/00_7choice_quote.sh +++ b/tests/results/test/00_7choice_quote.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_7help.adoc b/tests/results/test/00_7help.adoc index 85a7ff7aa..e4ca62494 100644 --- a/tests/results/test/00_7help.adoc +++ b/tests/results/test/00_7help.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test/00_7help_quote.adoc b/tests/results/test/00_7help_quote.adoc index 0cd8cd540..1c0eacd17 100644 --- a/tests/results/test/00_7help_quote.adoc +++ b/tests/results/test/00_7help_quote.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test/00_7help_sup.adoc b/tests/results/test/00_7help_sup.adoc index e3bb1909c..1e5a359f9 100644 --- a/tests/results/test/00_7help_sup.adoc +++ b/tests/results/test/00_7help_sup.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test/00_7value_doublequote.adoc b/tests/results/test/00_7value_doublequote.adoc index f6eb0be02..ef0497659 100644 --- a/tests/results/test/00_7value_doublequote.adoc +++ b/tests/results/test/00_7value_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test/00_7value_doublequote2.adoc b/tests/results/test/00_7value_doublequote2.adoc index f1fb0dbae..581bbf588 100644 --- a/tests/results/test/00_7value_doublequote2.adoc +++ b/tests/results/test/00_7value_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test/00_7value_doublequote3.adoc b/tests/results/test/00_7value_doublequote3.adoc index c4b225580..1c886b9fc 100644 --- a/tests/results/test/00_7value_doublequote3.adoc +++ b/tests/results/test/00_7value_doublequote3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test/00_7value_quote.adoc b/tests/results/test/00_7value_quote.adoc index 2c0d7a707..98146a751 100644 --- a/tests/results/test/00_7value_quote.adoc +++ b/tests/results/test/00_7value_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test/00_8calculation_information.adoc b/tests/results/test/00_8calculation_information.adoc index b6e4f1931..149466f2d 100644 --- a/tests/results/test/00_8calculation_information.adoc +++ b/tests/results/test/00_8calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test/00_8test.adoc b/tests/results/test/00_8test.adoc index 09525034e..c956c5f66 100644 --- a/tests/results/test/00_8test.adoc +++ b/tests/results/test/00_8test.adoc @@ -1,50 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test/00_8test.sh b/tests/results/test/00_8test.sh index 7b48b4b8e..99326a784 100644 --- a/tests/results/test/00_8test.sh +++ b/tests/results/test/00_8test.sh @@ -10,14 +10,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -25,6 +25,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9choice_variable_multi.adoc b/tests/results/test/00_9choice_variable_multi.adoc index f5b7d2ee6..f83c7707f 100644 --- a/tests/results/test/00_9choice_variable_multi.adoc +++ b/tests/results/test/00_9choice_variable_multi.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test/00_9choice_variable_multi.sh b/tests/results/test/00_9choice_variable_multi.sh index c0a7e6f08..0eb6ea7ea 100644 --- a/tests/results/test/00_9choice_variable_multi.sh +++ b/tests/results/test/00_9choice_variable_multi.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9choice_variables.adoc b/tests/results/test/00_9choice_variables.adoc index 18df0c69a..17a11721c 100644 --- a/tests/results/test/00_9choice_variables.adoc +++ b/tests/results/test/00_9choice_variables.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "source_variable_1" diff --git a/tests/results/test/00_9choice_variables.sh b/tests/results/test/00_9choice_variables.sh index a821b5e45..0b101e6ef 100644 --- a/tests/results/test/00_9choice_variables.sh +++ b/tests/results/test/00_9choice_variables.sh @@ -9,9 +9,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9default_calculation.adoc b/tests/results/test/00_9default_calculation.adoc index 257fbd20b..4e643f468 100644 --- a/tests/results/test/00_9default_calculation.adoc +++ b/tests/results/test/00_9default_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test/00_9default_calculation_information.adoc b/tests/results/test/00_9default_calculation_information.adoc index 3e37b10bf..535569083 100644 --- a/tests/results/test/00_9default_calculation_information.adoc +++ b/tests/results/test/00_9default_calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test/00_9default_calculation_information_other_variable.adoc b/tests/results/test/00_9default_calculation_information_other_variable.adoc index fcf7ac9eb..2de74ef4c 100644 --- a/tests/results/test/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test/00_9default_calculation_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test/00_9default_calculation_multi_optional.adoc b/tests/results/test/00_9default_calculation_multi_optional.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test/00_9default_calculation_multi_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test/00_9default_calculation_multi_optional.sh b/tests/results/test/00_9default_calculation_multi_optional.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test/00_9default_calculation_multi_optional.sh +++ b/tests/results/test/00_9default_calculation_multi_optional.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9default_calculation_multi_optional2.adoc b/tests/results/test/00_9default_calculation_multi_optional2.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test/00_9default_calculation_multi_optional2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test/00_9default_calculation_multi_optional2.sh b/tests/results/test/00_9default_calculation_multi_optional2.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test/00_9default_calculation_multi_optional2.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.adoc b/tests/results/test/00_9default_calculation_multi_optional_default.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test/00_9default_calculation_multi_optional_default.adoc +++ b/tests/results/test/00_9default_calculation_multi_optional_default.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.sh b/tests/results/test/00_9default_calculation_multi_optional_default.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test/00_9default_calculation_multi_optional_default.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/00_9default_calculation_optional.adoc b/tests/results/test/00_9default_calculation_optional.adoc index 2e2886528..6a26fd2ce 100644 --- a/tests/results/test/00_9default_calculation_optional.adoc +++ b/tests/results/test/00_9default_calculation_optional.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test/00_9default_calculation_optional_exists.adoc b/tests/results/test/00_9default_calculation_optional_exists.adoc index 1897a5f16..372b70df7 100644 --- a/tests/results/test/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test/00_9default_calculation_optional_exists.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "my_variable" if it is defined +* val2 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test/00_9default_calculation_optional_exists.sh b/tests/results/test/00_9default_calculation_optional_exists.sh index 4882beddd..d97720748 100644 --- a/tests/results/test/00_9default_calculation_optional_exists.sh +++ b/tests/results/test/00_9default_calculation_optional_exists.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "my_variable" if it is defined โ”‚ diff --git a/tests/results/test/00_9default_calculation_param_optional.adoc b/tests/results/test/00_9default_calculation_param_optional.adoc index c2c9e95bf..26aea7491 100644 --- a/tests/results/test/00_9default_calculation_param_optional.adoc +++ b/tests/results/test/00_9default_calculation_param_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test/00_9default_information_other_variable.adoc b/tests/results/test/00_9default_information_other_variable.adoc index c1b9bc2d5..f8a2e5d07 100644 --- a/tests/results/test/00_9default_information_other_variable.adoc +++ b/tests/results/test/00_9default_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test/00_9default_information_other_variable2.adoc b/tests/results/test/00_9default_information_other_variable2.adoc index c1b9bc2d5..f8a2e5d07 100644 --- a/tests/results/test/00_9default_information_other_variable2.adoc +++ b/tests/results/test/00_9default_information_other_variable2.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test/00_9default_integer.adoc b/tests/results/test/00_9default_integer.adoc index 505d8a5ea..6bad7f1f7 100644 --- a/tests/results/test/00_9default_integer.adoc +++ b/tests/results/test/00_9default_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test/00_9default_number.adoc b/tests/results/test/00_9default_number.adoc index 505d8a5ea..6bad7f1f7 100644 --- a/tests/results/test/00_9default_number.adoc +++ b/tests/results/test/00_9default_number.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test/01_6boolean_multi.adoc b/tests/results/test/01_6boolean_multi.adoc index 4cb937a4a..d04551a3b 100644 --- a/tests/results/test/01_6boolean_multi.adoc +++ b/tests/results/test/01_6boolean_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test/01_6boolean_multi.sh b/tests/results/test/01_6boolean_multi.sh index c4a9b1a8b..924dc338c 100644 --- a/tests/results/test/01_6boolean_multi.sh +++ b/tests/results/test/01_6boolean_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6custom_multi.adoc b/tests/results/test/01_6custom_multi.adoc index 1a52e631b..b2627a224 100644 --- a/tests/results/test/01_6custom_multi.adoc +++ b/tests/results/test/01_6custom_multi.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test/01_6custom_multi.sh b/tests/results/test/01_6custom_multi.sh index 7386f5d89..4874704f4 100644 --- a/tests/results/test/01_6custom_multi.sh +++ b/tests/results/test/01_6custom_multi.sh @@ -7,5 +7,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6float_multi.adoc b/tests/results/test/01_6float_multi.adoc index 119a08405..1ae2c9de1 100644 --- a/tests/results/test/01_6float_multi.adoc +++ b/tests/results/test/01_6float_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test/01_6float_multi.sh b/tests/results/test/01_6float_multi.sh index 84a9a15b8..17675ab21 100644 --- a/tests/results/test/01_6float_multi.sh +++ b/tests/results/test/01_6float_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6integer_multi.adoc b/tests/results/test/01_6integer_multi.adoc index 348205b5d..95332b79c 100644 --- a/tests/results/test/01_6integer_multi.adoc +++ b/tests/results/test/01_6integer_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test/01_6integer_multi.sh b/tests/results/test/01_6integer_multi.sh index 599788b4a..a4d9faded 100644 --- a/tests/results/test/01_6integer_multi.sh +++ b/tests/results/test/01_6integer_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6integer_multi_mandatory.adoc b/tests/results/test/01_6integer_multi_mandatory.adoc index fa997f439..3ba69826e 100644 --- a/tests/results/test/01_6integer_multi_mandatory.adoc +++ b/tests/results/test/01_6integer_multi_mandatory.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test/01_6string_empty.adoc b/tests/results/test/01_6string_empty.adoc index 971a44f75..b0445a7d8 100644 --- a/tests/results/test/01_6string_empty.adoc +++ b/tests/results/test/01_6string_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test/01_6string_empty.sh b/tests/results/test/01_6string_empty.sh index 5d4e5f22d..3e00b583f 100644 --- a/tests/results/test/01_6string_empty.sh +++ b/tests/results/test/01_6string_empty.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6string_multi.adoc b/tests/results/test/01_6string_multi.adoc index 8e03213be..dac961c65 100644 --- a/tests/results/test/01_6string_multi.adoc +++ b/tests/results/test/01_6string_multi.adoc @@ -1,60 +1,36 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test/01_6string_multi.sh b/tests/results/test/01_6string_multi.sh index 80633d41c..4d2fc57de 100644 --- a/tests/results/test/01_6string_multi.sh +++ b/tests/results/test/01_6string_multi.sh @@ -15,21 +15,21 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_6string_multi_length.adoc b/tests/results/test/01_6string_multi_length.adoc index bc7a95d0a..f543163c0 100644 --- a/tests/results/test/01_6string_multi_length.adoc +++ b/tests/results/test/01_6string_multi_length.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The variable. + +| **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. + +| **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 diff --git a/tests/results/test/01_6string_multi_length.sh b/tests/results/test/01_6string_multi_length.sh index 60f4b2eeb..bd9e70428 100644 --- a/tests/results/test/01_6string_multi_length.sh +++ b/tests/results/test/01_6string_multi_length.sh @@ -4,15 +4,15 @@ โ”‚ var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validators: โ”‚ -โ”‚ unique   multiple  โ”‚ - needs a minimum of 1 values โ”‚ -โ”‚ โ”‚ - needs a maximum of 4 values โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ +โ”‚ โ”‚ โ€ข val5 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_7value_multi_doublequote.adoc b/tests/results/test/01_7value_multi_doublequote.adoc index 70f25d0dc..daa81a7d9 100644 --- a/tests/results/test/01_7value_multi_doublequote.adoc +++ b/tests/results/test/01_7value_multi_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test/01_7value_multi_doublequote.sh b/tests/results/test/01_7value_multi_doublequote.sh index 4083724d1..15717b829 100644 --- a/tests/results/test/01_7value_multi_doublequote.sh +++ b/tests/results/test/01_7value_multi_doublequote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_7value_multi_doublequote2.adoc b/tests/results/test/01_7value_multi_doublequote2.adoc index f9e12295a..3835173a8 100644 --- a/tests/results/test/01_7value_multi_doublequote2.adoc +++ b/tests/results/test/01_7value_multi_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test/01_7value_multi_doublequote2.sh b/tests/results/test/01_7value_multi_doublequote2.sh index 48cd1c86a..021ff7f8d 100644 --- a/tests/results/test/01_7value_multi_doublequote2.sh +++ b/tests/results/test/01_7value_multi_doublequote2.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_7value_multi_quote.adoc b/tests/results/test/01_7value_multi_quote.adoc index 47da1f5a6..d031d6e4a 100644 --- a/tests/results/test/01_7value_multi_quote.adoc +++ b/tests/results/test/01_7value_multi_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test/01_7value_multi_quote.sh b/tests/results/test/01_7value_multi_quote.sh index d2e4a7949..a48dcf814 100644 --- a/tests/results/test/01_7value_multi_quote.sh +++ b/tests/results/test/01_7value_multi_quote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/01_8calculation_information_multi.adoc b/tests/results/test/01_8calculation_information_multi.adoc index e28f6c9d7..5523a4ac9 100644 --- a/tests/results/test/01_8calculation_information_multi.adoc +++ b/tests/results/test/01_8calculation_information_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test/01_9choice_variable_multi.adoc b/tests/results/test/01_9choice_variable_multi.adoc index 82a122d64..2ef2d6b8d 100644 --- a/tests/results/test/01_9choice_variable_multi.adoc +++ b/tests/results/test/01_9choice_variable_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "variable1" |==== diff --git a/tests/results/test/01_9choice_variable_multi.sh b/tests/results/test/01_9choice_variable_multi.sh index 19ab190fb..2c517ed14 100644 --- a/tests/results/test/01_9choice_variable_multi.sh +++ b/tests/results/test/01_9choice_variable_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test/01_9choice_variable_optional.adoc b/tests/results/test/01_9choice_variable_optional.adoc index 6d15b517b..0a090b686 100644 --- a/tests/results/test/01_9choice_variable_optional.adoc +++ b/tests/results/test/01_9choice_variable_optional.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test/01_9choice_variable_optional.sh b/tests/results/test/01_9choice_variable_optional.sh index 9239e8eea..09e323b2b 100644 --- a/tests/results/test/01_9choice_variable_optional.sh +++ b/tests/results/test/01_9choice_variable_optional.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/02_0tags.adoc b/tests/results/test/02_0tags.adoc index 56942d346..f5dab68e9 100644 --- a/tests/results/test/02_0tags.adoc +++ b/tests/results/test/02_0tags.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test/02_0tags.sh b/tests/results/test/02_0tags.sh index cf9749432..02648e83a 100644 --- a/tests/results/test/02_0tags.sh +++ b/tests/results/test/02_0tags.sh @@ -6,6 +6,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_0type_param.adoc b/tests/results/test/04_0type_param.adoc index 29f048432..4eee8b26f 100644 --- a/tests/results/test/04_0type_param.adoc +++ b/tests/results/test/04_0type_param.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test/04_0type_param.sh b/tests/results/test/04_0type_param.sh index 371200d7c..2c1caa3a0 100644 --- a/tests/results/test/04_0type_param.sh +++ b/tests/results/test/04_0type_param.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_0type_param_integer.adoc b/tests/results/test/04_0type_param_integer.adoc index 02c657a24..291868a04 100644 --- a/tests/results/test/04_0type_param_integer.adoc +++ b/tests/results/test/04_0type_param_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test/04_0type_param_integer.sh b/tests/results/test/04_0type_param_integer.sh index 35a8cc944..713f455f4 100644 --- a/tests/results/test/04_0type_param_integer.sh +++ b/tests/results/test/04_0type_param_integer.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_1auto_save.adoc b/tests/results/test/04_1auto_save.adoc index b4df1bd5a..fc79b2b59 100644 --- a/tests/results/test/04_1auto_save.adoc +++ b/tests/results/test/04_1auto_save.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test/04_1auto_save_and_calculated.adoc b/tests/results/test/04_1auto_save_and_calculated.adoc index 2a1d8dc10..632c98b37 100644 --- a/tests/results/test/04_1auto_save_and_calculated.adoc +++ b/tests/results/test/04_1auto_save_and_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test/04_1auto_save_and_calculated_hidden.adoc index f363e7f6e..f7824e4fe 100644 --- a/tests/results/test/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test/04_1auto_save_and_calculated_hidden.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test/04_1default_calculation_hidden.adoc b/tests/results/test/04_1default_calculation_hidden.adoc index ab6ff8875..733034e0c 100644 --- a/tests/results/test/04_1default_calculation_hidden.adoc +++ b/tests/results/test/04_1default_calculation_hidden.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/04_1default_calculation_hidden_2.adoc b/tests/results/test/04_1default_calculation_hidden_2.adoc index ab6ff8875..733034e0c 100644 --- a/tests/results/test/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test/04_1default_calculation_hidden_2.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/04_1default_calculation_hidden_3.adoc b/tests/results/test/04_1default_calculation_hidden_3.adoc index bdabd8f44..cbf7a7b36 100644 --- a/tests/results/test/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test/04_1default_calculation_hidden_3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/04_1default_calculation_hidden_4.adoc b/tests/results/test/04_1default_calculation_hidden_4.adoc index d405e7ba1..ebc2a7b70 100644 --- a/tests/results/test/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test/04_1default_calculation_hidden_4.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test/04_1default_calculation_hidden_5.adoc b/tests/results/test/04_1default_calculation_hidden_5.adoc index c28d4bb4a..0323556ba 100644 --- a/tests/results/test/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test/04_1default_calculation_hidden_5.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test/04_1default_calculation_hidden_6.adoc b/tests/results/test/04_1default_calculation_hidden_6.adoc index c28d4bb4a..0323556ba 100644 --- a/tests/results/test/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test/04_1default_calculation_hidden_6.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test/04_5disabled_calculation_boolean.adoc b/tests/results/test/04_5disabled_calculation_boolean.adoc index b1beda315..e3b95beba 100644 --- a/tests/results/test/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test/04_5disabled_calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test/04_5disabled_calculation_optional.adoc b/tests/results/test/04_5disabled_calculation_optional.adoc index b8b641021..4398364ac 100644 --- a/tests/results/test/04_5disabled_calculation_optional.adoc +++ b/tests/results/test/04_5disabled_calculation_optional.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test/04_5disabled_calculation_optional_default.adoc b/tests/results/test/04_5disabled_calculation_optional_default.adoc index 11fb68a45..b694cfedd 100644 --- a/tests/results/test/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test/04_5disabled_calculation_optional_default.adoc @@ -1,28 +1,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" +| Variable | Description +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable.adoc b/tests/results/test/04_5disabled_calculation_variable.adoc index 72147901f..b1c141c12 100644 --- a/tests/results/test/04_5disabled_calculation_variable.adoc +++ b/tests/results/test/04_5disabled_calculation_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable10.adoc b/tests/results/test/04_5disabled_calculation_variable10.adoc index 14fec330e..dd598ad52 100644 --- a/tests/results/test/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test/04_5disabled_calculation_variable10.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable2.adoc b/tests/results/test/04_5disabled_calculation_variable2.adoc index 14fec330e..dd598ad52 100644 --- a/tests/results/test/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test/04_5disabled_calculation_variable2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable3.adoc b/tests/results/test/04_5disabled_calculation_variable3.adoc index e435e8ff1..1ff2fafc9 100644 --- a/tests/results/test/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test/04_5disabled_calculation_variable3.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "yes" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable4.adoc b/tests/results/test/04_5disabled_calculation_variable4.adoc index ab9fc6c69..db9091fc7 100644 --- a/tests/results/test/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test/04_5disabled_calculation_variable4.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" hasn't the value "yes" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable5.adoc b/tests/results/test/04_5disabled_calculation_variable5.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test/04_5disabled_calculation_variable5.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/04_5disabled_calculation_variable6.adoc b/tests/results/test/04_5disabled_calculation_variable6.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test/04_5disabled_calculation_variable6.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/04_5disabled_calculation_variable7.adoc b/tests/results/test/04_5disabled_calculation_variable7.adoc index 72147901f..b1c141c12 100644 --- a/tests/results/test/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test/04_5disabled_calculation_variable7.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/04_5disabled_calculation_variable9.adoc b/tests/results/test/04_5disabled_calculation_variable9.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test/04_5disabled_calculation_variable9.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.adoc b/tests/results/test/04_5disabled_calculation_variable_multi.adoc index d98d62bfd..a3f11b78d 100644 --- a/tests/results/test/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test/04_5disabled_calculation_variable_multi.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/04_5validators.adoc b/tests/results/test/04_5validators.adoc index 0d8f01bd7..74eb3b274 100644 --- a/tests/results/test/04_5validators.adoc +++ b/tests/results/test/04_5validators.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test/04_5validators_differ.adoc b/tests/results/test/04_5validators_differ.adoc index 4f968ac3a..e0837f730 100644 --- a/tests/results/test/04_5validators_differ.adoc +++ b/tests/results/test/04_5validators_differ.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test/04_5validators_multi.adoc b/tests/results/test/04_5validators_multi.adoc index e3595443e..ad87ecdb9 100644 --- a/tests/results/test/04_5validators_multi.adoc +++ b/tests/results/test/04_5validators_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test/04_5validators_multi.sh b/tests/results/test/04_5validators_multi.sh index b4dc9b3e5..a9b06e33a 100644 --- a/tests/results/test/04_5validators_multi.sh +++ b/tests/results/test/04_5validators_multi.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_5validators_multi2.adoc b/tests/results/test/04_5validators_multi2.adoc index 508fb96da..251e760f8 100644 --- a/tests/results/test/04_5validators_multi2.adoc +++ b/tests/results/test/04_5validators_multi2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test/04_5validators_multi2.sh b/tests/results/test/04_5validators_multi2.sh index 0b8af4aac..6cc53ecdb 100644 --- a/tests/results/test/04_5validators_multi2.sh +++ b/tests/results/test/04_5validators_multi2.sh @@ -5,9 +5,9 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_5validators_multi3.adoc b/tests/results/test/04_5validators_multi3.adoc index e4b6003d5..908d36f77 100644 --- a/tests/results/test/04_5validators_multi3.adoc +++ b/tests/results/test/04_5validators_multi3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test/04_5validators_multi3.sh b/tests/results/test/04_5validators_multi3.sh index e2eab17ab..4e3eaab70 100644 --- a/tests/results/test/04_5validators_multi3.sh +++ b/tests/results/test/04_5validators_multi3.sh @@ -5,8 +5,8 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/04_5validators_warnings.adoc b/tests/results/test/04_5validators_warnings.adoc index 3661c9a03..258316a31 100644 --- a/tests/results/test/04_5validators_warnings.adoc +++ b/tests/results/test/04_5validators_warnings.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test/04_5validators_warnings_all.adoc b/tests/results/test/04_5validators_warnings_all.adoc index b64d060c2..702c6ceea 100644 --- a/tests/results/test/04_5validators_warnings_all.adoc +++ b/tests/results/test/04_5validators_warnings_all.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test/04_5validators_warnings_all.sh b/tests/results/test/04_5validators_warnings_all.sh index 26d0e096c..390d1b5e2 100644 --- a/tests/results/test/04_5validators_warnings_all.sh +++ b/tests/results/test/04_5validators_warnings_all.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/05_0multi_not_uniq.adoc b/tests/results/test/05_0multi_not_uniq.adoc index 4eb5e792b..31c859013 100644 --- a/tests/results/test/05_0multi_not_uniq.adoc +++ b/tests/results/test/05_0multi_not_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test/05_0multi_not_uniq.sh b/tests/results/test/05_0multi_not_uniq.sh index 45055b7c8..58d437b85 100644 --- a/tests/results/test/05_0multi_not_uniq.sh +++ b/tests/results/test/05_0multi_not_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/05_0multi_uniq.adoc b/tests/results/test/05_0multi_uniq.adoc index 0f2961823..25a88d383 100644 --- a/tests/results/test/05_0multi_uniq.adoc +++ b/tests/results/test/05_0multi_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test/05_0multi_uniq.sh b/tests/results/test/05_0multi_uniq.sh index e8435e0db..58d6ea4da 100644 --- a/tests/results/test/05_0multi_uniq.sh +++ b/tests/results/test/05_0multi_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/12_1auto_save_expert.adoc b/tests/results/test/12_1auto_save_expert.adoc index 64d3f6474..c57e2b0f3 100644 --- a/tests/results/test/12_1auto_save_expert.adoc +++ b/tests/results/test/12_1auto_save_expert.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test/16_0redefine_description.adoc b/tests/results/test/16_0redefine_description.adoc index a27681f0a..7cd9f6cfc 100644 --- a/tests/results/test/16_0redefine_description.adoc +++ b/tests/results/test/16_0redefine_description.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test/16_2family_redefine_calculation.adoc b/tests/results/test/16_2family_redefine_calculation.adoc index c8e3bf03c..863eb7fd8 100644 --- a/tests/results/test/16_2family_redefine_calculation.adoc +++ b/tests/results/test/16_2family_redefine_calculation.adoc @@ -1,20 +1,16 @@ == family +==== +**๐Ÿ›ˆ Informations** -**family** - -`basic` `__disabled__` - - +**family** + +`basic` `__disabled__` + **Disabled**: depends on a calculation - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test/16_2family_redefine_calculation.gitlab.md b/tests/results/test/16_2family_redefine_calculation.gitlab.md index fc1c6a7ec..aa7834077 100644 --- a/tests/results/test/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test/16_2family_redefine_calculation.gitlab.md @@ -1,8 +1,10 @@
family ->>> [!note] Informations -
**family**
`basic` *`disabled`*
**Disabled**: depends on a calculation ->>> +> [!note] Informations +> **family**\ +> `basic` *`disabled`*\ +> **Disabled**: depends on a calculation + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test/16_2family_redefine_calculation.md b/tests/results/test/16_2family_redefine_calculation.md index 839d30bf2..93490f347 100644 --- a/tests/results/test/16_2family_redefine_calculation.md +++ b/tests/results/test/16_2family_redefine_calculation.md @@ -1,10 +1,10 @@ # family - - -| Informations | -|:------------| -| **family**
`basic` *`disabled`*
**Disabled**: depends on a calculation | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` *`disabled`*\ +> **Disabled**: depends on a calculation | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_2family_redefine_calculation.sh b/tests/results/test/16_2family_redefine_calculation.sh index 6622aa17d..6461bfc28 100644 --- a/tests/results/test/16_2family_redefine_calculation.sh +++ b/tests/results/test/16_2family_redefine_calculation.sh @@ -1,14 +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_3family_empty_at_ends.adoc b/tests/results/test/16_3family_empty_at_ends.adoc index e1402cc62..45e435b46 100644 --- a/tests/results/test/16_3family_empty_at_ends.adoc +++ b/tests/results/test/16_3family_empty_at_ends.adoc @@ -1,17 +1,15 @@ == family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test/16_3family_empty_at_ends.gitlab.md b/tests/results/test/16_3family_empty_at_ends.gitlab.md index 5569bb4de..d08f70f84 100644 --- a/tests/results/test/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test/16_3family_empty_at_ends.gitlab.md @@ -1,8 +1,9 @@
family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test/16_3family_empty_at_ends.md b/tests/results/test/16_3family_empty_at_ends.md index 531d4e09e..a33b0a531 100644 --- a/tests/results/test/16_3family_empty_at_ends.md +++ b/tests/results/test/16_3family_empty_at_ends.md @@ -1,10 +1,9 @@ # family - - -| Informations | -|:------------| -| **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 c6ffb3bb2..7db6cf147 100644 --- a/tests/results/test/16_3family_empty_at_ends.sh +++ b/tests/results/test/16_3family_empty_at_ends.sh @@ -1,12 +1,9 @@ - - family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/16_5exists_nonexists.adoc b/tests/results/test/16_5exists_nonexists.adoc index 708e9a91f..0669595e8 100644 --- a/tests/results/test/16_5exists_nonexists.adoc +++ b/tests/results/test/16_5exists_nonexists.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test/16_5redefine_calculation.adoc b/tests/results/test/16_5redefine_calculation.adoc index 320f5d64e..92eb58511 100644 --- a/tests/results/test/16_5redefine_calculation.adoc +++ b/tests/results/test/16_5redefine_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test/16_5redefine_choice.adoc b/tests/results/test/16_5redefine_choice.adoc index 5ac6e725a..a11e7a410 100644 --- a/tests/results/test/16_5redefine_choice.adoc +++ b/tests/results/test/16_5redefine_choice.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test/16_5redefine_choice.sh b/tests/results/test/16_5redefine_choice.sh index e9264ed02..1e9157e33 100644 --- a/tests/results/test/16_5redefine_choice.sh +++ b/tests/results/test/16_5redefine_choice.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/16_5redefine_default.adoc b/tests/results/test/16_5redefine_default.adoc index b9c70ac19..a2a2dba9b 100644 --- a/tests/results/test/16_5redefine_default.adoc +++ b/tests/results/test/16_5redefine_default.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test/16_5redefine_default_calculation.adoc b/tests/results/test/16_5redefine_default_calculation.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test/16_5redefine_default_calculation.adoc +++ b/tests/results/test/16_5redefine_default_calculation.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/16_5redefine_family.adoc b/tests/results/test/16_5redefine_family.adoc index 2127ee487..2bb9c4c3b 100644 --- a/tests/results/test/16_5redefine_family.adoc +++ b/tests/results/test/16_5redefine_family.adoc @@ -1,17 +1,15 @@ == New description +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/16_5redefine_family.gitlab.md b/tests/results/test/16_5redefine_family.gitlab.md index dfbfb0508..c60999204 100644 --- a/tests/results/test/16_5redefine_family.gitlab.md +++ b/tests/results/test/16_5redefine_family.gitlab.md @@ -1,8 +1,9 @@
New description ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/16_5redefine_family.md b/tests/results/test/16_5redefine_family.md index 027dc76f2..0d452cb63 100644 --- a/tests/results/test/16_5redefine_family.md +++ b/tests/results/test/16_5redefine_family.md @@ -1,10 +1,9 @@ # New description - - -| Informations | -|:------------| -| **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 d1d3599c4..09fb82994 100644 --- a/tests/results/test/16_5redefine_family.sh +++ b/tests/results/test/16_5redefine_family.sh @@ -1,12 +1,9 @@ - - New description - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/16_5redefine_help.adoc b/tests/results/test/16_5redefine_help.adoc index e62ef6fc9..41ee45be4 100644 --- a/tests/results/test/16_5redefine_help.adoc +++ b/tests/results/test/16_5redefine_help.adoc @@ -1,20 +1,17 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - -Redefine help family ok. - +**family** + +Redefine help family ok. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md index c5e940225..a3a181d7b 100644 --- a/tests/results/test/16_5redefine_help.gitlab.md +++ b/tests/results/test/16_5redefine_help.gitlab.md @@ -1,8 +1,10 @@
A family ->>> [!note] Informations -
**family**
Redefine help family ok.
`basic` ->>> +> [!note] Informations +> **family**\ +> Redefine help family ok.\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| | **family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.
Redefine help ok. | diff --git a/tests/results/test/16_5redefine_help.md b/tests/results/test/16_5redefine_help.md index 9575e383e..979b9eaf8 100644 --- a/tests/results/test/16_5redefine_help.md +++ b/tests/results/test/16_5redefine_help.md @@ -1,10 +1,10 @@ # A family - - -| Informations | -|:------------| -| **family**
Redefine help family ok.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> Redefine help family ok.\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/16_5redefine_help.sh b/tests/results/test/16_5redefine_help.sh index c68257b00..0955696b8 100644 --- a/tests/results/test/16_5redefine_help.sh +++ b/tests/results/test/16_5redefine_help.sh @@ -1,14 +1,10 @@ - - A family - -family - -Redefine help family ok. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ Redefine help family ok. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/16_5redefine_multi.adoc b/tests/results/test/16_5redefine_multi.adoc index 0f2961823..25a88d383 100644 --- a/tests/results/test/16_5redefine_multi.adoc +++ b/tests/results/test/16_5redefine_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test/16_5redefine_multi.sh b/tests/results/test/16_5redefine_multi.sh index e8435e0db..58d6ea4da 100644 --- a/tests/results/test/16_5redefine_multi.sh +++ b/tests/results/test/16_5redefine_multi.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/16_5redefine_remove_disable_calculation.adoc b/tests/results/test/16_5redefine_remove_disable_calculation.adoc index 58129fe8b..e4dbbdd2d 100644 --- a/tests/results/test/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test/16_5redefine_remove_disable_calculation.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/16_5test_redefine.adoc b/tests/results/test/16_5test_redefine.adoc index 890da4bf1..e63f4af3e 100644 --- a/tests/results/test/16_5test_redefine.adoc +++ b/tests/results/test/16_5test_redefine.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test/16_6choice_redefine.adoc b/tests/results/test/16_6choice_redefine.adoc index d44284dbb..c10ec9e43 100644 --- a/tests/results/test/16_6choice_redefine.adoc +++ b/tests/results/test/16_6choice_redefine.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test/16_6choice_redefine.sh b/tests/results/test/16_6choice_redefine.sh index 98fc9d474..d2cf80a4f 100644 --- a/tests/results/test/16_6choice_redefine.sh +++ b/tests/results/test/16_6choice_redefine.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/16_6exists_redefine_family.adoc b/tests/results/test/16_6exists_redefine_family.adoc index b7d9c9925..a837d3bd8 100644 --- a/tests/results/test/16_6exists_redefine_family.adoc +++ b/tests/results/test/16_6exists_redefine_family.adoc @@ -1,34 +1,30 @@ == New description +==== +**๐Ÿ›ˆ Informations** -**family1** - +**family1** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== == A second family +==== +**๐Ÿ›ˆ Informations** -**family2** - +**family2** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test/16_6exists_redefine_family.gitlab.md b/tests/results/test/16_6exists_redefine_family.gitlab.md index f5a69e52e..71269d62a 100644 --- a/tests/results/test/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test/16_6exists_redefine_family.gitlab.md @@ -1,8 +1,9 @@
New description ->>> [!note] Informations -
**family1**
`basic` ->>> +> [!note] Informations +> **family1**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family1.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | @@ -11,9 +12,10 @@
A second family ->>> [!note] Informations -
**family2**
`basic` ->>> +> [!note] Informations +> **family2**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. | diff --git a/tests/results/test/16_6exists_redefine_family.md b/tests/results/test/16_6exists_redefine_family.md index e7e46d00a..bea4243ba 100644 --- a/tests/results/test/16_6exists_redefine_family.md +++ b/tests/results/test/16_6exists_redefine_family.md @@ -1,10 +1,9 @@ # New description - - -| Informations | -|:------------| -| **family1**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family1**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,10 @@ # A second family - - -| Informations | -|:------------| -| **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 732dc44ea..baf364116 100644 --- a/tests/results/test/16_6exists_redefine_family.sh +++ b/tests/results/test/16_6exists_redefine_family.sh @@ -1,12 +1,9 @@ - - New description - -family1 - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family1 +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -15,15 +12,12 @@ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second family - -family2 - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family2 +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/16exists_exists.adoc b/tests/results/test/16exists_exists.adoc index 5f5ec8ac7..730176e72 100644 --- a/tests/results/test/16exists_exists.adoc +++ b/tests/results/test/16exists_exists.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test/20_0family_append.adoc b/tests/results/test/20_0family_append.adoc index 93b609f37..b6a931fea 100644 --- a/tests/results/test/20_0family_append.adoc +++ b/tests/results/test/20_0family_append.adoc @@ -1,22 +1,17 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test/20_0family_append.gitlab.md b/tests/results/test/20_0family_append.gitlab.md index f5851facf..8c465fdf0 100644 --- a/tests/results/test/20_0family_append.gitlab.md +++ b/tests/results/test/20_0family_append.gitlab.md @@ -1,8 +1,9 @@
A family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------| | **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test/20_0family_append.md b/tests/results/test/20_0family_append.md index ae91622d2..e5876b6c8 100644 --- a/tests/results/test/20_0family_append.md +++ b/tests/results/test/20_0family_append.md @@ -1,10 +1,9 @@ # A family - - -| Informations | -|:------------| -| **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 fe2844ce0..811233718 100644 --- a/tests/results/test/20_0family_append.sh +++ b/tests/results/test/20_0family_append.sh @@ -1,12 +1,9 @@ - - A family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/20_0multi_family.adoc b/tests/results/test/20_0multi_family.adoc index 220e9a05d..4c22f004f 100644 --- a/tests/results/test/20_0multi_family.adoc +++ b/tests/results/test/20_0multi_family.adoc @@ -1,24 +1,23 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `standard` - +==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test/20_0multi_family.gitlab.md b/tests/results/test/20_0multi_family.gitlab.md index 62dcd403f..720e4d8be 100644 --- a/tests/results/test/20_0multi_family.gitlab.md +++ b/tests/results/test/20_0multi_family.gitlab.md @@ -1,13 +1,15 @@
A family ->>> [!note] Informations -
**family**
`standard` ->>> +> [!note] Informations +> **family**\ +> `standard` +
A sub family ->>> [!note] Informations -
**family.subfamily**
`standard` ->>> +> [!note] Informations +> **family.subfamily**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. | diff --git a/tests/results/test/20_0multi_family.md b/tests/results/test/20_0multi_family.md index d8e041d85..d47aebc11 100644 --- a/tests/results/test/20_0multi_family.md +++ b/tests/results/test/20_0multi_family.md @@ -1,18 +1,16 @@ # A family - - -| Informations | -|:------------| -| **family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `standard` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family.sh b/tests/results/test/20_0multi_family.sh index ea907876d..8e6258697 100644 --- a/tests/results/test/20_0multi_family.sh +++ b/tests/results/test/20_0multi_family.sh @@ -1,22 +1,16 @@ - - 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_basic.adoc b/tests/results/test/20_0multi_family_basic.adoc index 2fa5cec36..97523609c 100644 --- a/tests/results/test/20_0multi_family_basic.adoc +++ b/tests/results/test/20_0multi_family_basic.adoc @@ -1,24 +1,23 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/20_0multi_family_basic.gitlab.md b/tests/results/test/20_0multi_family_basic.gitlab.md index a1aa60e70..631080695 100644 --- a/tests/results/test/20_0multi_family_basic.gitlab.md +++ b/tests/results/test/20_0multi_family_basic.gitlab.md @@ -1,13 +1,15 @@
A family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` +
A sub family ->>> [!note] Informations -
**family.subfamily**
`basic` ->>> +> [!note] Informations +> **family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/20_0multi_family_basic.md b/tests/results/test/20_0multi_family_basic.md index 387522e9e..8c95b9abb 100644 --- a/tests/results/test/20_0multi_family_basic.md +++ b/tests/results/test/20_0multi_family_basic.md @@ -1,18 +1,16 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_basic.sh b/tests/results/test/20_0multi_family_basic.sh index 98d8f5f0a..980a63bd6 100644 --- a/tests/results/test/20_0multi_family_basic.sh +++ b/tests/results/test/20_0multi_family_basic.sh @@ -1,22 +1,16 @@ - - 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_expert.adoc b/tests/results/test/20_0multi_family_expert.adoc index 98f8b2caf..d584c6e69 100644 --- a/tests/results/test/20_0multi_family_expert.adoc +++ b/tests/results/test/20_0multi_family_expert.adoc @@ -1,24 +1,23 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `advanced` - +==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `advanced` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test/20_0multi_family_expert.gitlab.md b/tests/results/test/20_0multi_family_expert.gitlab.md index b81c0ba74..3e39ed4ab 100644 --- a/tests/results/test/20_0multi_family_expert.gitlab.md +++ b/tests/results/test/20_0multi_family_expert.gitlab.md @@ -1,13 +1,15 @@
A family ->>> [!note] Informations -
**family**
`advanced` ->>> +> [!note] Informations +> **family**\ +> `advanced` +
A sub family ->>> [!note] Informations -
**family.subfamily**
`advanced` ->>> +> [!note] Informations +> **family.subfamily**\ +> `advanced` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. | diff --git a/tests/results/test/20_0multi_family_expert.md b/tests/results/test/20_0multi_family_expert.md index b8c4888ec..953ea8fd8 100644 --- a/tests/results/test/20_0multi_family_expert.md +++ b/tests/results/test/20_0multi_family_expert.md @@ -1,18 +1,16 @@ # A family - - -| Informations | -|:------------| -| **family**
`advanced` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `advanced` ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`advanced` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `advanced` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/20_0multi_family_expert.sh b/tests/results/test/20_0multi_family_expert.sh index 1ab15eab8..8a842c2cf 100644 --- a/tests/results/test/20_0multi_family_expert.sh +++ b/tests/results/test/20_0multi_family_expert.sh @@ -1,22 +1,16 @@ - - 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_order.adoc b/tests/results/test/20_0multi_family_order.adoc index fd5ee71ed..8fc4451d7 100644 --- a/tests/results/test/20_0multi_family_order.adoc +++ b/tests/results/test/20_0multi_family_order.adoc @@ -1,54 +1,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. +| Variable | Description +| **family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. |==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== [cols="1a,1a"] |==== -| Variable | Description -| - -**family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test/20_0multi_family_order.gitlab.md b/tests/results/test/20_0multi_family_order.gitlab.md index 2362ed023..0932f9d0c 100644 --- a/tests/results/test/20_0multi_family_order.gitlab.md +++ b/tests/results/test/20_0multi_family_order.gitlab.md @@ -4,18 +4,20 @@
A family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **family.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
A sub family ->>> [!note] Informations -
**family.subfamily**
`basic` ->>> +> [!note] Informations +> **family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/20_0multi_family_order.md b/tests/results/test/20_0multi_family_order.md index 55993408b..b773f4f25 100644 --- a/tests/results/test/20_0multi_family_order.md +++ b/tests/results/test/20_0multi_family_order.md @@ -4,11 +4,10 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,11 +15,10 @@ ## A sub family - - -| Informations | -|:------------| -| **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 0fe5e391a..ba7bbaa82 100644 --- a/tests/results/test/20_0multi_family_order.sh +++ b/tests/results/test/20_0multi_family_order.sh @@ -4,15 +4,12 @@ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,15 +17,12 @@ โ”‚ family.variable1 โ”‚ A first variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A sub family - -family.subfamily - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family.subfamily +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/20_0validators_differ_redefine.adoc b/tests/results/test/20_0validators_differ_redefine.adoc index 82a28f955..96129049b 100644 --- a/tests/results/test/20_0validators_differ_redefine.adoc +++ b/tests/results/test/20_0validators_differ_redefine.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test/20_2family_looks_like_dynamic.adoc b/tests/results/test/20_2family_looks_like_dynamic.adoc index 2362404d4..a18aae39e 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test/20_2family_looks_like_dynamic.adoc @@ -1,26 +1,21 @@ == my_family +==== +**๐Ÿ›ˆ Informations** -**my_family** - +**my_family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md index 5330f8056..e054641c2 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md @@ -1,8 +1,9 @@
my_family ->>> [!note] Informations -
**my_family**
`standard` ->>> +> [!note] Informations +> **my_family**\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| | **my_family.dynamic**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | **Default**:
- val1
- val2 | diff --git a/tests/results/test/20_2family_looks_like_dynamic.md b/tests/results/test/20_2family_looks_like_dynamic.md index c5012d287..4c1749b25 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.md +++ b/tests/results/test/20_2family_looks_like_dynamic.md @@ -1,10 +1,9 @@ # my_family - - -| Informations | -|:------------| -| **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 fefe64578..46664a847 100644 --- a/tests/results/test/20_2family_looks_like_dynamic.sh +++ b/tests/results/test/20_2family_looks_like_dynamic.sh @@ -1,19 +1,16 @@ - - my_family - -my_family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ my_family +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ diff --git a/tests/results/test/20_2family_looks_like_variable.adoc b/tests/results/test/20_2family_looks_like_variable.adoc index c9b03c4c2..158c7c11b 100644 --- a/tests/results/test/20_2family_looks_like_variable.adoc +++ b/tests/results/test/20_2family_looks_like_variable.adoc @@ -1,17 +1,15 @@ == my_family +==== +**๐Ÿ›ˆ Informations** -**my_family** - +**my_family** + `standard` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test/20_2family_looks_like_variable.gitlab.md b/tests/results/test/20_2family_looks_like_variable.gitlab.md index 8b8cb83bd..330464073 100644 --- a/tests/results/test/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test/20_2family_looks_like_variable.gitlab.md @@ -1,8 +1,9 @@
my_family ->>> [!note] Informations -
**my_family**
`standard` ->>> +> [!note] Informations +> **my_family**\ +> `standard` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: true | diff --git a/tests/results/test/20_2family_looks_like_variable.md b/tests/results/test/20_2family_looks_like_variable.md index 6085e5f11..4720628dd 100644 --- a/tests/results/test/20_2family_looks_like_variable.md +++ b/tests/results/test/20_2family_looks_like_variable.md @@ -1,10 +1,9 @@ # my_family - - -| Informations | -|:------------| -| **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 af15f8f12..c98061ce8 100644 --- a/tests/results/test/20_2family_looks_like_variable.sh +++ b/tests/results/test/20_2family_looks_like_variable.sh @@ -1,12 +1,9 @@ - - my_family - -my_family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ my_family +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/20_9default_information_parent.adoc b/tests/results/test/20_9default_information_parent.adoc index c03bd1038..65bd3279e 100644 --- a/tests/results/test/20_9default_information_parent.adoc +++ b/tests/results/test/20_9default_information_parent.adoc @@ -1,23 +1,18 @@ == family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "family" +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "family" |==== diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md index c66e05673..844da656a 100644 --- a/tests/results/test/20_9default_information_parent.gitlab.md +++ b/tests/results/test/20_9default_information_parent.gitlab.md @@ -1,8 +1,9 @@
family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------| | **family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test/20_9default_information_parent.md b/tests/results/test/20_9default_information_parent.md index 6168737c6..b2b43970e 100644 --- a/tests/results/test/20_9default_information_parent.md +++ b/tests/results/test/20_9default_information_parent.md @@ -1,10 +1,9 @@ # family - - -| Informations | -|:------------| -| **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 0e260dfd4..5f5f3d2a9 100644 --- a/tests/results/test/20_9default_information_parent.sh +++ b/tests/results/test/20_9default_information_parent.sh @@ -1,12 +1,9 @@ - - family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/20_9family_absolute.adoc b/tests/results/test/20_9family_absolute.adoc index 8c57c1680..4325044d9 100644 --- a/tests/results/test/20_9family_absolute.adoc +++ b/tests/results/test/20_9family_absolute.adoc @@ -1,46 +1,39 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -First variable. +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | First variable. |==== == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. + +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. + **Example**: string6 |==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Third variable. + +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Third variable. + **Default**: * the value of the variable "var1" @@ -49,43 +42,36 @@ Third variable. + == A family +==== +**๐Ÿ›ˆ Informations** -**family2** - +**family2** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family2.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable2. + +| **family2.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. + **Default**: the value of the variable "family.var2" -| - -**family2.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: string4 + +| **family2.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 + **Example**: string5 |==== === A sub family +==== +**๐Ÿ›ˆ Informations** -**family2.subfamily** - +**family2.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family2.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Fourth variable. + +| **family2.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Fourth variable. + **Default**: * the value of the variable "var1" diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md index cc28b8232..2f62631c7 100644 --- a/tests/results/test/20_9family_absolute.gitlab.md +++ b/tests/results/test/20_9family_absolute.gitlab.md @@ -4,18 +4,20 @@
A family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------| | **family.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.
**Example**: string6 |
A sub family ->>> [!note] Informations -
**family.subfamily**
`standard` ->>> +> [!note] Informations +> **family.subfamily**\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Third variable.
**Default**:
- the value of the variable "[`First variable`](#var1)"
- the value of the variable "[`A second variable`](#family.var2)" | @@ -26,9 +28,10 @@
A family ->>> [!note] Informations -
**family2**
`standard` ->>> +> [!note] Informations +> **family2**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| | **family2.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.
**Default**: the value of the variable "[`A second variable`](#family.var2)" | @@ -36,9 +39,10 @@
A sub family ->>> [!note] Informations -
**family2.subfamily**
`standard` ->>> +> [!note] Informations +> **family2.subfamily**\ +> `standard` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **family2.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Fourth variable.
**Default**:
- the value of the variable "[`First variable`](#var1)"
- the value of the variable "[`A second variable`](#family.var2)"
- the value of the variable "[`Var3`](#family2.var3)" | diff --git a/tests/results/test/20_9family_absolute.md b/tests/results/test/20_9family_absolute.md index 27348f479..89fcd3be2 100644 --- a/tests/results/test/20_9family_absolute.md +++ b/tests/results/test/20_9family_absolute.md @@ -4,11 +4,10 @@ # A family - - -| Informations | -|:------------| -| **family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -16,11 +15,10 @@ ## A sub family - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -28,11 +26,10 @@ # A family - - -| Informations | -|:------------| -| **family2**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **family2**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -41,11 +38,10 @@ ## A sub family - - -| Informations | -|:------------| -| **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 d76960847..d4abc13be 100644 --- a/tests/results/test/20_9family_absolute.sh +++ b/tests/results/test/20_9family_absolute.sh @@ -4,15 +4,12 @@ โ”‚ var1 โ”‚ First variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,36 +17,30 @@ โ”‚ family.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Example: string6 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A sub family - -family.subfamily - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family.subfamily +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ family.subfamily.variable โ”‚ Third variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -family2 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family2 +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -61,25 +52,22 @@ โ”‚ family2.var3 โ”‚ Default: string4 โ”‚ โ”‚  string   standard   mandatory  โ”‚ Example: string5 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A sub family - -family2.subfamily - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ family2.subfamily +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ family2.subfamily.variable โ”‚ Fourth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family2.var3" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.adoc b/tests/results/test/24_0family_hidden_condition_sub_family.adoc index a590ef4e8..c7c4de288 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test/24_0family_hidden_condition_sub_family.adoc @@ -1,38 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no |==== == Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**family** - -`basic` `__hidden__` - - +**family** + +`basic` `__hidden__` + **Hidden**: if condition is yes - +==== === subfamily +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md index 548c3d74b..c2c61d6c2 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 @@ -4,14 +4,17 @@
Possibly hidden family ->>> [!note] Informations -
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes ->>> +> [!note] Informations +> **family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes +
subfamily ->>> [!note] Informations -
**family.subfamily**
`basic` ->>> +> [!note] Informations +> **family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.md b/tests/results/test/24_0family_hidden_condition_sub_family.md index 40d118e62..c19693b85 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_condition_sub_family.md @@ -4,19 +4,18 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes ## subfamily - - -| Informations | -|:------------| -| **family.subfamily**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.sh b/tests/results/test/24_0family_hidden_condition_sub_family.sh index 738936334..1f2b3072a 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test/24_0family_hidden_condition_sub_family.sh @@ -4,27 +4,20 @@ โ”‚ condition โ”‚ The variable use has condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - 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_variable_sub_family.adoc b/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc index 200b777f5..c0534ab5f 100644 --- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.adoc @@ -1,38 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true |==== == Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**family** - -`standard` `__hidden__` - - +**family** + +`standard` `__hidden__` + **Hidden**: when the variable "condition" has the value "true" - +==== === A subfamily +==== +**๐Ÿ›ˆ Informations** -**family.subfamily** - +**family.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md index 7e6baaebc..16e40bfa3 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 @@ -4,14 +4,17 @@
Possibly hidden family ->>> [!note] Informations -
**family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true" ->>> +> [!note] Informations +> **family**\ +> `standard` *`hidden`*\ +> **Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true" +
A subfamily ->>> [!note] Informations -
**family.subfamily**
`standard` ->>> +> [!note] Informations +> **family.subfamily**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. | diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test/24_0family_hidden_condition_variable_sub_family.md index 436718699..4896f3ba5 100644 --- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.md +++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.md @@ -4,19 +4,18 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`standard` *`hidden`*
**Hidden**: when the variable "condition" has the value "true" | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `standard` *`hidden`*\ +> **Hidden**: when the variable "condition" has the value "true" ## A subfamily - - -| Informations | -|:------------| -| **family.subfamily**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **family.subfamily**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test/24_0family_hidden_condition_variable_sub_family.sh index a82c30a53..ede6035f1 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 @@ -4,27 +4,20 @@ โ”‚ condition โ”‚ The variable use has condition. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - 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_param_condition_sub_family.adoc b/tests/results/test/24_0family_hidden_param_condition_sub_family.adoc index 11b0fce95..a38b34b08 100644 --- a/tests/results/test/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.adoc @@ -1,38 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no |==== == Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**family** - -`basic` `__hidden__` - - +**family** + +`basic` `__hidden__` + **Hidden**: if condition is yes - +==== === A subfamily +==== +**๐Ÿ›ˆ Informations** -**family.sub_family** - +**family.sub_family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md index 3a7f13598..7b784990c 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 @@ -4,14 +4,17 @@
Possibly hidden family ->>> [!note] Informations -
**family**
`basic` *`hidden`*
**Hidden**: if condition is yes ->>> +> [!note] Informations +> **family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes +
A subfamily ->>> [!note] Informations -
**family.sub_family**
`basic` ->>> +> [!note] Informations +> **family.sub_family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.md index 642719eea..2f2d6980d 100644 --- a/tests/results/test/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.md @@ -4,19 +4,18 @@ # Possibly hidden family - - -| Informations | -|:------------| -| **family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> **๐Ÿ›ˆ Informations** +> +> **family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes ## A subfamily - - -| Informations | -|:------------| -| **family.sub_family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **family.sub_family**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test/24_0family_hidden_param_condition_sub_family.sh index 79a3dceee..0c69c91d2 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 @@ -4,27 +4,20 @@ โ”‚ condition โ”‚ The variable use has condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - 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_mandatory_condition.adoc b/tests/results/test/24_0family_mandatory_condition.adoc index bb53ef4e4..898254dae 100644 --- a/tests/results/test/24_0family_mandatory_condition.adoc +++ b/tests/results/test/24_0family_mandatory_condition.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test/24_0family_mandatory_condition_variable.adoc b/tests/results/test/24_0family_mandatory_condition_variable.adoc index 15d55a1fb..268c84a48 100644 --- a/tests/results/test/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test/24_0family_mandatory_condition_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test/24_7validators_variable_optional.adoc b/tests/results/test/24_7validators_variable_optional.adoc index f2996a37e..3c648352c 100644 --- a/tests/results/test/24_7validators_variable_optional.adoc +++ b/tests/results/test/24_7validators_variable_optional.adoc @@ -1,29 +1,24 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**general** - +**general** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test/24_7validators_variable_optional.gitlab.md b/tests/results/test/24_7validators_variable_optional.gitlab.md index 0ef676bdd..b3c35f973 100644 --- a/tests/results/test/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test/24_7validators_variable_optional.gitlab.md @@ -1,8 +1,9 @@
A family ->>> [!note] Informations -
**general**
`basic` ->>> +> [!note] Informations +> **general**\ +> `basic` + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| | **general.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.
**Validators**:
- int and int2 must be different
- int and int3 must be different
**Example**: 5 | diff --git a/tests/results/test/24_7validators_variable_optional.md b/tests/results/test/24_7validators_variable_optional.md index 849dafcff..f8772c309 100644 --- a/tests/results/test/24_7validators_variable_optional.md +++ b/tests/results/test/24_7validators_variable_optional.md @@ -1,10 +1,9 @@ # A family - - -| Informations | -|:------------| -| **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 0cd8a6c2b..7f4bed2b4 100644 --- a/tests/results/test/24_7validators_variable_optional.sh +++ b/tests/results/test/24_7validators_variable_optional.sh @@ -1,20 +1,17 @@ - - A family - -general - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ general +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test/40_0leadership.adoc b/tests/results/test/40_0leadership.adoc index d24307341..9075fc2b5 100644 --- a/tests/results/test/40_0leadership.adoc +++ b/tests/results/test/40_0leadership.adoc @@ -1,29 +1,20 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md index 9698ee424..aa5b41b4c 100644 --- a/tests/results/test/40_0leadership.gitlab.md +++ b/tests/results/test/40_0leadership.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/40_0leadership.md b/tests/results/test/40_0leadership.md index dbc8501d0..37eb653ab 100644 --- a/tests/results/test/40_0leadership.md +++ b/tests/results/test/40_0leadership.md @@ -1,10 +1,10 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership.sh b/tests/results/test/40_0leadership.sh index 6ec826708..49a5b4e5c 100644 --- a/tests/results/test/40_0leadership.sh +++ b/tests/results/test/40_0leadership.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_0leadership_diff_name.adoc b/tests/results/test/40_0leadership_diff_name.adoc index d3cde2e90..f292b96d3 100644 --- a/tests/results/test/40_0leadership_diff_name.adoc +++ b/tests/results/test/40_0leadership_diff_name.adoc @@ -1,29 +1,20 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md index 77366ddfb..62c926e3e 100644 --- a/tests/results/test/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test/40_0leadership_diff_name.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/40_0leadership_diff_name.md b/tests/results/test/40_0leadership_diff_name.md index 677c2769a..b2f8a9153 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_diff_name.sh b/tests/results/test/40_0leadership_diff_name.sh index f24f83f20..82e57f27f 100644 --- a/tests/results/test/40_0leadership_diff_name.sh +++ b/tests/results/test/40_0leadership_diff_name.sh @@ -1,14 +1,10 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_0leadership_follower_default_calculation.adoc b/tests/results/test/40_0leadership_follower_default_calculation.adoc index 86cb2997a..fc4800eda 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test/40_0leadership_follower_default_calculation.adoc @@ -1,31 +1,22 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md index ada56741d..7c911f518 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/40_0leadership_follower_default_calculation.md b/tests/results/test/40_0leadership_follower_default_calculation.md index 8f8fa8f03..69fe084ff 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_calculation.sh b/tests/results/test/40_0leadership_follower_default_calculation.sh index a60baffe0..b61cff7d6 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test/40_0leadership_follower_default_calculation.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_0leadership_follower_default_value.adoc b/tests/results/test/40_0leadership_follower_default_value.adoc index b3864ec0c..91feb6024 100644 --- a/tests/results/test/40_0leadership_follower_default_value.adoc +++ b/tests/results/test/40_0leadership_follower_default_value.adoc @@ -1,25 +1,19 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test/40_0leadership_follower_default_value.gitlab.md b/tests/results/test/40_0leadership_follower_default_value.gitlab.md index fc61fd27b..557566540 100644 --- a/tests/results/test/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test/40_0leadership_follower_default_value.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | diff --git a/tests/results/test/40_0leadership_follower_default_value.md b/tests/results/test/40_0leadership_follower_default_value.md index e327e376d..39616dda5 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_follower_default_value.sh b/tests/results/test/40_0leadership_follower_default_value.sh index e2db1f2aa..35dcd0220 100644 --- a/tests/results/test/40_0leadership_follower_default_value.sh +++ b/tests/results/test/40_0leadership_follower_default_value.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_0leadership_leader_follower.adoc b/tests/results/test/40_0leadership_leader_follower.adoc index 7186d231a..3a0723d8b 100644 --- a/tests/results/test/40_0leadership_leader_follower.adoc +++ b/tests/results/test/40_0leadership_leader_follower.adoc @@ -1,29 +1,23 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "leadership.leader" |==== diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md index 6e25fc643..dd39cb213 100644 --- a/tests/results/test/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_0leadership_leader_follower.md b/tests/results/test/40_0leadership_leader_follower.md index 28e2ff60c..8ea55e6f2 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_follower.sh b/tests/results/test/40_0leadership_leader_follower.sh index edf7a19dc..c26948cbe 100644 --- a/tests/results/test/40_0leadership_leader_follower.sh +++ b/tests/results/test/40_0leadership_leader_follower.sh @@ -1,22 +1,18 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test/40_0leadership_leader_not_multi.adoc b/tests/results/test/40_0leadership_leader_not_multi.adoc index df6166abc..a34cc1f1b 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test/40_0leadership_leader_not_multi.adoc @@ -1,54 +1,44 @@ == general +==== +**๐Ÿ›ˆ Informations** -**general** - +**general** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non |==== == general1 +==== +**๐Ÿ›ˆ Informations** -**general1** - +**general1** + `basic` - +==== === Leader +==== +**๐Ÿ›ˆ Informations** -**general1.leader** - -This family contains lists of variable blocks. - +**general1.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md index 905fcce13..f82c70543 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md @@ -1,8 +1,9 @@
general ->>> [!note] Informations -
**general**
`standard` ->>> +> [!note] Informations +> **general**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | **general.mode_conteneur_actif**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.
**Default**: non | @@ -11,14 +12,17 @@
general1 ->>> [!note] Informations -
**general1**
`basic` ->>> +> [!note] Informations +> **general1**\ +> `basic` +
Leader ->>> [!note] Informations -
**general1.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **general1.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **general1.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | Leader. | diff --git a/tests/results/test/40_0leadership_leader_not_multi.md b/tests/results/test/40_0leadership_leader_not_multi.md index bffa7b2da..c58edd77b 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.md +++ b/tests/results/test/40_0leadership_leader_not_multi.md @@ -1,10 +1,9 @@ # general - - -| Informations | -|:------------| -| **general**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **general**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,18 @@ # general1 - - -| Informations | -|:------------| -| **general1**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **general1**\ +> `basic` ## Leader - - -| Informations | -|:------------| -| **general1.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **general1.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_leader_not_multi.sh b/tests/results/test/40_0leadership_leader_not_multi.sh index fbf4f1bbb..35a6b2ea1 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.sh +++ b/tests/results/test/40_0leadership_leader_not_multi.sh @@ -1,12 +1,9 @@ - - general - -general - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ general +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -15,27 +12,20 @@ โ”‚  string   standard   mandatory  โ”‚ Default: non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - general1 - -general1 - - basic  - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ general1 +โ–Œ  basic  Leader - -general1.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ general1.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_0leadership_reduce.adoc b/tests/results/test/40_0leadership_reduce.adoc index 852b38aa1..d2debf170 100644 --- a/tests/results/test/40_0leadership_reduce.adoc +++ b/tests/results/test/40_0leadership_reduce.adoc @@ -1,20 +1,17 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -25,10 +22,7 @@ A leader. + * val1 * val2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md index dc13be049..acbf28861 100644 --- a/tests/results/test/40_0leadership_reduce.gitlab.md +++ b/tests/results/test/40_0leadership_reduce.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value_1
- value_2
- value_3
**Examples**:
- val1
- val2 | diff --git a/tests/results/test/40_0leadership_reduce.md b/tests/results/test/40_0leadership_reduce.md index 68a1913be..ddaceb156 100644 --- a/tests/results/test/40_0leadership_reduce.md +++ b/tests/results/test/40_0leadership_reduce.md @@ -1,10 +1,10 @@ # A leadership - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_0leadership_reduce.sh b/tests/results/test/40_0leadership_reduce.sh index 26da85cb2..3e6ebe6e7 100644 --- a/tests/results/test/40_0leadership_reduce.sh +++ b/tests/results/test/40_0leadership_reduce.sh @@ -1,26 +1,22 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test/40_1leadership_append_follower.adoc b/tests/results/test/40_1leadership_append_follower.adoc index 3c288bc3d..e623e12a6 100644 --- a/tests/results/test/40_1leadership_append_follower.adoc +++ b/tests/results/test/40_1leadership_append_follower.adoc @@ -1,34 +1,22 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md index c7a5ebd8e..014e9f69a 100644 --- a/tests/results/test/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test/40_1leadership_append_follower.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The leader. | diff --git a/tests/results/test/40_1leadership_append_follower.md b/tests/results/test/40_1leadership_append_follower.md index 45bd0f861..675d7dba5 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_1leadership_append_follower.sh b/tests/results/test/40_1leadership_append_follower.sh index 05e2d0093..5df25128f 100644 --- a/tests/results/test/40_1leadership_append_follower.sh +++ b/tests/results/test/40_1leadership_append_follower.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_2leadership_calculation_index.adoc b/tests/results/test/40_2leadership_calculation_index.adoc index 70b6ae56f..59e636d91 100644 --- a/tests/results/test/40_2leadership_calculation_index.adoc +++ b/tests/results/test/40_2leadership_calculation_index.adoc @@ -1,30 +1,24 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md index b10c32d53..94ecb100f 100644 --- a/tests/results/test/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c | diff --git a/tests/results/test/40_2leadership_calculation_index.md b/tests/results/test/40_2leadership_calculation_index.md index 256be6e75..70c1cb390 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index.sh b/tests/results/test/40_2leadership_calculation_index.sh index 67c825ca6..0b52b94a7 100644 --- a/tests/results/test/40_2leadership_calculation_index.sh +++ b/tests/results/test/40_2leadership_calculation_index.sh @@ -1,23 +1,19 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test/40_2leadership_calculation_index_2.adoc b/tests/results/test/40_2leadership_calculation_index_2.adoc index 70b6ae56f..59e636d91 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test/40_2leadership_calculation_index_2.adoc @@ -1,30 +1,24 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md index b10c32d53..94ecb100f 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c | diff --git a/tests/results/test/40_2leadership_calculation_index_2.md b/tests/results/test/40_2leadership_calculation_index_2.md index 256be6e75..70c1cb390 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_2leadership_calculation_index_2.sh b/tests/results/test/40_2leadership_calculation_index_2.sh index 67c825ca6..0b52b94a7 100644 --- a/tests/results/test/40_2leadership_calculation_index_2.sh +++ b/tests/results/test/40_2leadership_calculation_index_2.sh @@ -1,23 +1,19 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test/40_6leadership_follower_multi.adoc b/tests/results/test/40_6leadership_follower_multi.adoc index d0227033e..b33582f94 100644 --- a/tests/results/test/40_6leadership_follower_multi.adoc +++ b/tests/results/test/40_6leadership_follower_multi.adoc @@ -1,32 +1,23 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md index a429e62a8..e8af6fa0f 100644 --- a/tests/results/test/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test/40_6leadership_follower_multi.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The leader. | diff --git a/tests/results/test/40_6leadership_follower_multi.md b/tests/results/test/40_6leadership_follower_multi.md index 4469df34d..b64bda729 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi.sh b/tests/results/test/40_6leadership_follower_multi.sh index 6fbb17982..7edea983d 100644 --- a/tests/results/test/40_6leadership_follower_multi.sh +++ b/tests/results/test/40_6leadership_follower_multi.sh @@ -1,14 +1,10 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,6 +19,6 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 1ff53bece..f73e74ad6 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.adoc @@ -1,32 +1,23 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md index 8cc55d456..fc617e545 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. | diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.md index 26a79c67f..66aad20f6 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh index 9fcd57bb3..d3deb9531 100644 --- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.sh @@ -1,14 +1,10 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,6 +19,6 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/40_8calculation_boolean.adoc b/tests/results/test/40_8calculation_boolean.adoc index 5fedf1965..1bea89631 100644 --- a/tests/results/test/40_8calculation_boolean.adoc +++ b/tests/results/test/40_8calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test/40_8calculation_multi_variable.adoc b/tests/results/test/40_8calculation_multi_variable.adoc index 7bc57d69a..ad15df94b 100644 --- a/tests/results/test/40_8calculation_multi_variable.adoc +++ b/tests/results/test/40_8calculation_multi_variable.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "var2" * the value of the variable "var3" -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test/40_8calculation_multi_variable.sh b/tests/results/test/40_8calculation_multi_variable.sh index 629d816b1..be935dc73 100644 --- a/tests/results/test/40_8calculation_multi_variable.sh +++ b/tests/results/test/40_8calculation_multi_variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var2" โ”‚ -โ”‚ โ”‚ - the value of the variable "var3" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var2" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable "var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ diff --git a/tests/results/test/40_8calculation_multi_variable_parent.adoc b/tests/results/test/40_8calculation_multi_variable_parent.adoc index e31d032fa..267109d29 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test/40_8calculation_multi_variable_parent.adoc @@ -1,29 +1,24 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no |==== == A family +==== +**๐Ÿ›ˆ Informations** -**fam1** - +**fam1** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "var" |==== diff --git a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md index 2352c77d8..9c1cfdf30 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md @@ -4,9 +4,10 @@
A family ->>> [!note] Informations -
**fam1**
`standard` ->>> +> [!note] Informations +> **fam1**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------| | **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[`A variable`](#var)" | diff --git a/tests/results/test/40_8calculation_multi_variable_parent.md b/tests/results/test/40_8calculation_multi_variable_parent.md index a25e7c68a..b9a945191 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.md @@ -4,11 +4,10 @@ # A family - - -| Informations | -|:------------| -| **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 a6d5dec8c..2f033e239 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test/40_8calculation_multi_variable_parent.sh @@ -4,15 +4,12 @@ โ”‚ var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -fam1 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ fam1 +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.adoc b/tests/results/test/40_8calculation_multi_variable_parent2.adoc index 0f127acca..c8b86b5e5 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test/40_8calculation_multi_variable_parent2.adoc @@ -1,36 +1,32 @@ == First family +==== +**๐Ÿ›ˆ Informations** -**fam1** - +**fam1** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no |==== == Second family +==== +**๐Ÿ›ˆ Informations** -**fam2** - +**fam2** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "fam1.var" |==== diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md index 895c2740f..b132581f6 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md @@ -1,8 +1,9 @@
First family ->>> [!note] Informations -
**fam1**
`standard` ->>> +> [!note] Informations +> **fam1**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | **fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no | @@ -11,9 +12,10 @@
Second family ->>> [!note] Informations -
**fam2**
`standard` ->>> +> [!note] Informations +> **fam2**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------| | **fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[`A variable`](#fam1.var)" | diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.md b/tests/results/test/40_8calculation_multi_variable_parent2.md index 3c8ad2c89..e1d1d262a 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.md @@ -1,10 +1,9 @@ # First family - - -| Informations | -|:------------| -| **fam1**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **fam1**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,10 @@ # Second family - - -| Informations | -|:------------| -| **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 56bf7eccd..8cb2fb661 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test/40_8calculation_multi_variable_parent2.sh @@ -1,12 +1,9 @@ - - First family - -fam1 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ fam1 +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -15,15 +12,12 @@ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - Second family - -fam2 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 f09468eb8..16b9dcac2 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,29 +1,23 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "leadership.leader" diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md index dac85bd7b..3f2df2b78 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.md index 7344accc9..40aa569b2 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh index 728a9f1a7..a391479de 100644 --- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,26 +1,22 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 e468f78a3..2aa8ee408 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md index b4d20041e..cd4a3c28e 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.md index fe9d86dcf..34e6c7e93 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh index f96c6fc02..1939b6e5a 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 e468f78a3..2aa8ee408 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md index b4d20041e..cd4a3c28e 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.md index fe9d86dcf..34e6c7e93 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh index f96c6fc02..1939b6e5a 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 712bb51b6..db38831ad 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,37 +1,28 @@ == leader +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a * b -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | |==== [cols="1a,1a"] |==== -| Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "leader.follower" +| Variable | Description +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "leader.follower" |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index cb333803d..9f6c80c67 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,8 +1,10 @@
leader ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | **Default**:
- a
- b | diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.md index 7dd6111b0..9e8c68a97 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh index 7e1030a81..7701cb2c1 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -1,21 +1,17 @@ - - leader - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.adoc b/tests/results/test/40_9leadership-calculation-outside-follower.adoc index c66b877c5..505175bbb 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-follower.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.follower1" |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md index 90e7069d5..eda50579f 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.md b/tests/results/test/40_9leadership-calculation-outside-follower.md index 531b6b239..bd8983076 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.sh b/tests/results/test/40_9leadership-calculation-outside-follower.sh index aa691f1fc..55f9d4dc9 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test/40_9leadership-calculation-outside-follower.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 dc4fe7ce8..4232d299d 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md index ddc9f3e55..788734553 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.md index e2ad89137..4246c4b40 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh index 10b48b4ef..de1628177 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 dc4fe7ce8..4232d299d 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md index ddc9f3e55..788734553 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.md index e2ad89137..4246c4b40 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh index 10b48b4ef..de1628177 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.adoc b/tests/results/test/40_9leadership-calculation-outside-leader.adoc index 7a8e61ba2..1fc4e8e35 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test/40_9leadership-calculation-outside-leader.adoc @@ -1,46 +1,34 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.leader" |==== diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md index 911caaab6..67724a120 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.md b/tests/results/test/40_9leadership-calculation-outside-leader.md index 31081e4f1..34fa5cd86 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.sh b/tests/results/test/40_9leadership-calculation-outside-leader.sh index b08929b4f..551f53cd6 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test/40_9leadership-calculation-outside-leader.sh @@ -1,22 +1,18 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test/40_9leadership-calculation-variable.adoc b/tests/results/test/40_9leadership-calculation-variable.adoc index 535dc014f..08d6e137c 100644 --- a/tests/results/test/40_9leadership-calculation-variable.adoc +++ b/tests/results/test/40_9leadership-calculation-variable.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 @@ -14,33 +11,24 @@ A calculated variable. + == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "calculate" -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md index b30fc1fbd..f64f0b7a3 100644 --- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md @@ -4,9 +4,11 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "[`A calculated variable`](#calculate)" | diff --git a/tests/results/test/40_9leadership-calculation-variable.md b/tests/results/test/40_9leadership-calculation-variable.md index f415c28e6..6f133d5f8 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable.sh b/tests/results/test/40_9leadership-calculation-variable.sh index 2e88fa97d..d47e2bfbb 100644 --- a/tests/results/test/40_9leadership-calculation-variable.sh +++ b/tests/results/test/40_9leadership-calculation-variable.sh @@ -3,20 +3,16 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc index 1b62d7635..1877136f5 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.adoc @@ -1,54 +1,42 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership_1** - -This family contains lists of variable blocks. - +**leadership_1** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== == A second leadership +==== +**๐Ÿ›ˆ Informations** -**leadership_2** - -This family contains lists of variable blocks. - +**leadership_2** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "leadership_1.follower" -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md index 705733397..a386d33a8 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership_1**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | @@ -12,9 +14,11 @@
A second leadership ->>> [!note] Informations -
**leadership_2**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| | **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "[`A follower`](#leadership_1.follower)" | diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower.md index 4035706de..bf94a8e99 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 - - -| Informations | -|:------------| -| **leadership_1**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +13,11 @@ # A second leadership - - -| Informations | -|:------------| -| **leadership_2**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh index d342c14bd..9c674e523 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.sh @@ -1,38 +1,30 @@ - - A leadership - -leadership_1 - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership_1 +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second leadership - -leadership_2 - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership_2 +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 494bd7a04..ac68b6d55 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,57 +1,45 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership_1** - -This family contains lists of variable blocks. - +**leadership_1** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== == A second leadership +==== +**๐Ÿ›ˆ Informations** -**leadership_2** - -This family contains lists of variable blocks. - +**leadership_2** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "leadership_1.leader" |==== diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md index 89063cecb..54fccd752 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,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership_1**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | @@ -12,9 +14,11 @@
A second leadership ->>> [!note] Informations -
**leadership_2**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------| | **leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.md index 73d11e071..fe119111f 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 - - -| Informations | -|:------------| -| **leadership_1**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +13,11 @@ # A second leadership - - -| Informations | -|:------------| -| **leadership_2**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh index 19caba66d..70bb16cad 100644 --- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,46 +1,38 @@ - - A leadership - -leadership_1 - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership_1 +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second leadership - -leadership_2 - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership_2 +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test/41_0choice_leader.adoc b/tests/results/test/41_0choice_leader.adoc index f7ce1eb6a..de1cbc9fc 100644 --- a/tests/results/test/41_0choice_leader.adoc +++ b/tests/results/test/41_0choice_leader.adoc @@ -1,25 +1,19 @@ == The leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md index 99617eec9..354bfbf42 100644 --- a/tests/results/test/41_0choice_leader.gitlab.md +++ b/tests/results/test/41_0choice_leader.gitlab.md @@ -1,8 +1,10 @@
The leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. | diff --git a/tests/results/test/41_0choice_leader.md b/tests/results/test/41_0choice_leader.md index 6de121977..7edd40714 100644 --- a/tests/results/test/41_0choice_leader.md +++ b/tests/results/test/41_0choice_leader.md @@ -1,10 +1,10 @@ # The leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/41_0choice_leader.sh b/tests/results/test/41_0choice_leader.sh index ec5c8e6be..7feb2e90b 100644 --- a/tests/results/test/41_0choice_leader.sh +++ b/tests/results/test/41_0choice_leader.sh @@ -1,14 +1,10 @@ - - The leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -19,8 +15,8 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.adoc b/tests/results/test/44_4disabled_calcultion_follower_index.adoc index 2ead6c622..25664a503 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test/44_4disabled_calcultion_follower_index.adoc @@ -1,29 +1,23 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leadership** - -This family contains lists of variable blocks. - +**leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md index 82f103870..7e243e0aa 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| | **leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**:
- a
- b | diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.md b/tests/results/test/44_4disabled_calcultion_follower_index.md index 39143f500..0f26d3651 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 - - -| Informations | -|:------------| -| **leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.sh b/tests/results/test/44_4disabled_calcultion_follower_index.sh index df5c3c541..caeeb7da9 100644 --- a/tests/results/test/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test/44_4disabled_calcultion_follower_index.sh @@ -1,22 +1,18 @@ - - A leadership - -leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test/44_4leadership_mandatory.adoc b/tests/results/test/44_4leadership_mandatory.adoc index 17d40bf68..ffcab92dd 100644 --- a/tests/results/test/44_4leadership_mandatory.adoc +++ b/tests/results/test/44_4leadership_mandatory.adoc @@ -1,24 +1,18 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md index 37ba0e673..44238e028 100644 --- a/tests/results/test/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/44_4leadership_mandatory.md b/tests/results/test/44_4leadership_mandatory.md index 76209815e..371672b26 100644 --- a/tests/results/test/44_4leadership_mandatory.md +++ b/tests/results/test/44_4leadership_mandatory.md @@ -1,10 +1,10 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory.sh b/tests/results/test/44_4leadership_mandatory.sh index 1e112a40f..bb88c17fd 100644 --- a/tests/results/test/44_4leadership_mandatory.sh +++ b/tests/results/test/44_4leadership_mandatory.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/44_4leadership_mandatory_follower.adoc b/tests/results/test/44_4leadership_mandatory_follower.adoc index 410bf3718..1e01f87d9 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test/44_4leadership_mandatory_follower.adoc @@ -1,24 +1,18 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md index 43592e04f..2cebb80c5 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | diff --git a/tests/results/test/44_4leadership_mandatory_follower.md b/tests/results/test/44_4leadership_mandatory_follower.md index ddf27fea7..b8342c7f9 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_4leadership_mandatory_follower.sh b/tests/results/test/44_4leadership_mandatory_follower.sh index 3dc941da5..effae83f1 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.sh +++ b/tests/results/test/44_4leadership_mandatory_follower.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test/44_5leadership_leader_hidden_calculation.adoc index e0ea7ef97..89f098721 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.adoc @@ -1,38 +1,27 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no |==== == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - -`basic` `__hidden__` - - +**leader** + +This family contains lists of variable blocks. + +`basic` `__hidden__` + **Hidden**: if condition is no - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md index 2c6cf3e86..03df3a141 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md @@ -4,9 +4,12 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is no + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.md b/tests/results/test/44_5leadership_leader_hidden_calculation.md index 209ec83cb..b2f950d74 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.md @@ -4,11 +4,12 @@ # A leadership - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is no | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.sh b/tests/results/test/44_5leadership_leader_hidden_calculation.sh index 35fccb1c2..d8dd7b25c 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.sh @@ -4,19 +4,14 @@ โ”‚ condition โ”‚ A condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic   hidden  - -Hidden: if condition is no - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic   hidden  +โ–Œ Hidden: if condition is no โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test/44_6leadership_follower_disabled_calculation.adoc index f8cc9b3b2..8ce724174 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.adoc @@ -1,36 +1,27 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes |==== == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md index cfbf48163..25aeeaab9 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md @@ -4,9 +4,11 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.md b/tests/results/test/44_6leadership_follower_disabled_calculation.md index e698793cc..68b5676be 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.sh b/tests/results/test/44_6leadership_follower_disabled_calculation.sh index d5ef40587..aa2dea05d 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.sh @@ -4,17 +4,13 @@ โ”‚ condition โ”‚ A condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/60_0family_dynamic.adoc b/tests/results/test/60_0family_dynamic.adoc index 7c3f0721a..da19dbdac 100644 --- a/tests/results/test/60_0family_dynamic.adoc +++ b/tests/results/test/60_0family_dynamic.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md index 3b9ce3e5b..741ce4342 100644 --- a/tests/results/test/60_0family_dynamic.gitlab.md +++ b/tests/results/test/60_0family_dynamic.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic.html b/tests/results/test/60_0family_dynamic.html index fc447fdcb..591e71dda 100644 --- a/tests/results/test/60_0family_dynamic.html +++ b/tests/results/test/60_0family_dynamic.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic.md b/tests/results/test/60_0family_dynamic.md index f60cbe5ae..0433f79ef 100644 --- a/tests/results/test/60_0family_dynamic.md +++ b/tests/results/test/60_0family_dynamic.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic.sh b/tests/results/test/60_0family_dynamic.sh index e21022fa3..6a68a736c 100644 --- a/tests/results/test/60_0family_dynamic.sh +++ b/tests/results/test/60_0family_dynamic.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 fcd0eae69..ca0dbd664 100644 --- a/tests/results/test/60_0family_dynamic_1_1.adoc +++ b/tests/results/test/60_0family_dynamic_1_1.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.vardyn** + +| Variable | Description +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic_1_1.gitlab.md b/tests/results/test/60_0family_dynamic_1_1.gitlab.md index 9ada911ef..f8522e3ab 100644 --- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic_1_1.html b/tests/results/test/60_0family_dynamic_1_1.html index 15cfcea26..5b87fb57f 100644 --- a/tests/results/test/60_0family_dynamic_1_1.html +++ b/tests/results/test/60_0family_dynamic_1_1.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_1_1.md b/tests/results/test/60_0family_dynamic_1_1.md index 7653351af..047fb84b1 100644 --- a/tests/results/test/60_0family_dynamic_1_1.md +++ b/tests/results/test/60_0family_dynamic_1_1.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_1_1.sh b/tests/results/test/60_0family_dynamic_1_1.sh index 8311a7147..bd8c8d48e 100644 --- a/tests/results/test/60_0family_dynamic_1_1.sh +++ b/tests/results/test/60_0family_dynamic_1_1.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 29c0acda8..efd377a0f 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test/60_0family_dynamic_1_1_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.vardyn** + +| Variable | Description +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md index 37432ed86..1a8acdf29 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 8e3a28b4f..241421008 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.html +++ b/tests/results/test/60_0family_dynamic_1_1_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.md b/tests/results/test/60_0family_dynamic_1_1_empty.md index 98ee1aaf9..2eb9d91f5 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test/60_0family_dynamic_1_1_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.sh b/tests/results/test/60_0family_dynamic_1_1_empty.sh index 900b12567..67383e814 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test/60_0family_dynamic_1_1_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 1a55ed3fc..1d75b8e40 100644 --- a/tests/results/test/60_0family_dynamic_empty.adoc +++ b/tests/results/test/60_0family_dynamic_empty.adoc @@ -1,31 +1,24 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. |==== == A dynamic family +==== +**๐Ÿ›ˆ Informations** -**dyn__example__** - -This family builds families dynamically. - -`basic` - +**dyn__example__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md index 299050a40..5c7c81fce 100644 --- a/tests/results/test/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md @@ -4,9 +4,12 @@
A dynamic family ->>> [!note] Informations -
**dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*example***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic_empty.md b/tests/results/test/60_0family_dynamic_empty.md index 4c3c99a94..66574a5b0 100644 --- a/tests/results/test/60_0family_dynamic_empty.md +++ b/tests/results/test/60_0family_dynamic_empty.md @@ -4,11 +4,12 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*example***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_empty.sh b/tests/results/test/60_0family_dynamic_empty.sh index d85fa7bc7..d9f7cbc37 100644 --- a/tests/results/test/60_0family_dynamic_empty.sh +++ b/tests/results/test/60_0family_dynamic_empty.sh @@ -5,19 +5,14 @@ โ”‚  string   standard   unique    โ”‚ โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynexample - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 43c89c539..9768fa763 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test/60_0family_dynamic_forbidden_char.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 @@ -14,32 +11,25 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val_1__** + -**dyn__val_2__** - -This family builds families dynamically. - -`standard` - +**dyn__val_2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val_1__.var1** + +| **dyn__val_1__.var1** + **dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**dyn__val_1__.var2** + +| **dyn__val_1__.var2** + **dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md index 01795f797..74789d6bd 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val_1***
**dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val_1***\ +> **dyn*val_2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **dyn*val_1*.var1**
**dyn*val_2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.html b/tests/results/test/60_0family_dynamic_forbidden_char.html index 936aad9ec..8914000a1 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test/60_0family_dynamic_forbidden_char.html @@ -10,7 +10,9 @@

A dynamic family

-dynval_1
dynval_2 +dynval_1 + +dynval_2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.md b/tests/results/test/60_0family_dynamic_forbidden_char.md index 172c00981..40541a81e 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test/60_0family_dynamic_forbidden_char.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val_1***
**dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val_1***\ +> **dyn*val_2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.sh b/tests/results/test/60_0family_dynamic_forbidden_char.sh index 0ad197b68..31ee1acc2 100644 --- a/tests/results/test/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test/60_0family_dynamic_forbidden_char.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval_1 -dynval_2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 0f8153f13..97218bb78 100644 --- a/tests/results/test/60_0family_dynamic_no_description.adoc +++ b/tests/results/test/60_0family_dynamic_no_description.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test/60_0family_dynamic_no_description.gitlab.md b/tests/results/test/60_0family_dynamic_no_description.gitlab.md index 2105542ef..50928d378 100644 --- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test/60_0family_dynamic_no_description.html b/tests/results/test/60_0family_dynamic_no_description.html index c32f7bd86..debc65bc1 100644 --- a/tests/results/test/60_0family_dynamic_no_description.html +++ b/tests/results/test/60_0family_dynamic_no_description.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_no_description.md b/tests/results/test/60_0family_dynamic_no_description.md index 21673da11..6453e4e50 100644 --- a/tests/results/test/60_0family_dynamic_no_description.md +++ b/tests/results/test/60_0family_dynamic_no_description.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_no_description.sh b/tests/results/test/60_0family_dynamic_no_description.sh index fe5e93f93..d76c7f4dd 100644 --- a/tests/results/test/60_0family_dynamic_no_description.sh +++ b/tests/results/test/60_0family_dynamic_no_description.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 44d0f0013..ea5319ebe 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test/60_0family_dynamic_no_description_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md index 0af374b2f..4e4e71616 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | 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 a5873cf8d..db55be41a 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.html +++ b/tests/results/test/60_0family_dynamic_no_description_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.md b/tests/results/test/60_0family_dynamic_no_description_empty.md index e16e57f84..eacfbfefd 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test/60_0family_dynamic_no_description_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.sh b/tests/results/test/60_0family_dynamic_no_description_empty.sh index ff205be10..80a493f48 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test/60_0family_dynamic_no_description_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 56a5d7656..2b1e62cbc 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test/60_0family_dynamic_source_hidden.adoc @@ -1,26 +1,22 @@ == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: (from an undocumented variable) * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic 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 79b65f2e0..26eac4042 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md @@ -1,8 +1,12 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: (from an undocumented variable)
- val1
- val2 + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic_source_hidden.html b/tests/results/test/60_0family_dynamic_source_hidden.html index bcf01d6a1..05fa585a2 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.html +++ b/tests/results/test/60_0family_dynamic_source_hidden.html @@ -1,6 +1,8 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_source_hidden.md b/tests/results/test/60_0family_dynamic_source_hidden.md index 9c81184b6..6c1406791 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.md +++ b/tests/results/test/60_0family_dynamic_source_hidden.md @@ -1,10 +1,12 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: (from an undocumented variable)
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_source_hidden.sh b/tests/results/test/60_0family_dynamic_source_hidden.sh index 1c4b8329e..ab03a4cbe 100644 --- a/tests/results/test/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test/60_0family_dynamic_source_hidden.sh @@ -1,19 +1,14 @@ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: (from an undocumented variable) -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 248ea0126..6604412b6 100644 --- a/tests/results/test/60_0family_dynamic_static.adoc +++ b/tests/results/test/60_0family_dynamic_static.adoc @@ -1,26 +1,22 @@ == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md index 402d14c14..10bdcb97e 100644 --- a/tests/results/test/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test/60_0family_dynamic_static.gitlab.md @@ -1,8 +1,12 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. | diff --git a/tests/results/test/60_0family_dynamic_static.html b/tests/results/test/60_0family_dynamic_static.html index 8a7c4c2b2..1a1492a5b 100644 --- a/tests/results/test/60_0family_dynamic_static.html +++ b/tests/results/test/60_0family_dynamic_static.html @@ -1,6 +1,8 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_static.md b/tests/results/test/60_0family_dynamic_static.md index 8d0ba1c1e..a1a2c0c13 100644 --- a/tests/results/test/60_0family_dynamic_static.md +++ b/tests/results/test/60_0family_dynamic_static.md @@ -1,10 +1,12 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_static.sh b/tests/results/test/60_0family_dynamic_static.sh index b5f1bc803..f2ff70d5b 100644 --- a/tests/results/test/60_0family_dynamic_static.sh +++ b/tests/results/test/60_0family_dynamic_static.sh @@ -1,19 +1,14 @@ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 cce27657c..8d81199b6 100644 --- a/tests/results/test/60_0family_dynamic_test.adoc +++ b/tests/results/test/60_0family_dynamic_test.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md index dc0379de3..3448a77ec 100644 --- a/tests/results/test/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test/60_0family_dynamic_test.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic_test.html b/tests/results/test/60_0family_dynamic_test.html index b5f36bb29..0dbe60a90 100644 --- a/tests/results/test/60_0family_dynamic_test.html +++ b/tests/results/test/60_0family_dynamic_test.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_test.md b/tests/results/test/60_0family_dynamic_test.md index 0fd043054..92962d238 100644 --- a/tests/results/test/60_0family_dynamic_test.md +++ b/tests/results/test/60_0family_dynamic_test.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_test.sh b/tests/results/test/60_0family_dynamic_test.sh index 70c4ee6dc..658fb7595 100644 --- a/tests/results/test/60_0family_dynamic_test.sh +++ b/tests/results/test/60_0family_dynamic_test.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 3b69dc847..eab849a81 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test/60_0family_dynamic_upper_char.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 @@ -14,24 +11,20 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md index c406de7aa..49a8a29a0 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_0family_dynamic_upper_char.html b/tests/results/test/60_0family_dynamic_upper_char.html index 7a0042616..561e809c5 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.html +++ b/tests/results/test/60_0family_dynamic_upper_char.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_upper_char.md b/tests/results/test/60_0family_dynamic_upper_char.md index 732878620..0456be902 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.md +++ b/tests/results/test/60_0family_dynamic_upper_char.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_upper_char.sh b/tests/results/test/60_0family_dynamic_upper_char.sh index a53bddaa3..fa48d0d2e 100644 --- a/tests/results/test/60_0family_dynamic_upper_char.sh +++ b/tests/results/test/60_0family_dynamic_upper_char.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 638d73a05..d4032701a 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test/60_0family_dynamic_variable_empty.adoc @@ -1,32 +1,25 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. |==== == A dynamic family +==== +**๐Ÿ›ˆ Informations** -**dyn__example__** - -This family builds families dynamically. - -`standard` - +**dyn__example__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md index bed45852a..1e4668579 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md @@ -4,9 +4,12 @@
A dynamic family ->>> [!note] Informations -
**dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | diff --git a/tests/results/test/60_0family_dynamic_variable_empty.md b/tests/results/test/60_0family_dynamic_variable_empty.md index 00f182080..2fc8041c4 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.md @@ -4,11 +4,12 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_empty.sh b/tests/results/test/60_0family_dynamic_variable_empty.sh index 8ab99b671..eedd40429 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test/60_0family_dynamic_variable_empty.sh @@ -5,19 +5,14 @@ โ”‚  string   basic   mandatory   unique  โ”‚ โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynexample - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 920de9293..e60af3f75 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test/60_0family_dynamic_variable_optional.adoc @@ -1,27 +1,23 @@ == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__a__** + -**dyn__b__** - -This family builds families dynamically. - -`standard` - +**dyn__b__** + +This family builds families dynamically. + +`standard` + **Identifiers**: * a * b - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__a__.var** + +| **dyn__a__.var** + **dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md index e375031bf..7e10b7648 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md @@ -1,8 +1,12 @@
A dynamic family ->>> [!note] Informations -
**dyn*a***
**dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b ->>> +> [!note] Informations +> **dyn*a***\ +> **dyn*b***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- a
- b + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **dyn*a*.var**
**dyn*b*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | diff --git a/tests/results/test/60_0family_dynamic_variable_optional.html b/tests/results/test/60_0family_dynamic_variable_optional.html index 6d12cc352..e7c57be02 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.html +++ b/tests/results/test/60_0family_dynamic_variable_optional.html @@ -1,6 +1,8 @@

A dynamic family

-dyna
dynb +dyna + +dynb This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_variable_optional.md b/tests/results/test/60_0family_dynamic_variable_optional.md index d0d8334e6..1af81ce19 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.md +++ b/tests/results/test/60_0family_dynamic_variable_optional.md @@ -1,10 +1,12 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*a***
**dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b | +> **๐Ÿ›ˆ Informations** +> +> **dyn*a***\ +> **dyn*b***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- a
- b | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_optional.sh b/tests/results/test/60_0family_dynamic_variable_optional.sh index c6b0180c0..30a6e1be7 100644 --- a/tests/results/test/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test/60_0family_dynamic_variable_optional.sh @@ -1,19 +1,14 @@ - - A dynamic family - -dyna -dynb - -This family builds families dynamically. - - standard  - -Identifiers: -- a -- b - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 843bbd86d..0a1e042e1 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test/60_0family_dynamic_variable_suffix.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,25 +11,21 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md index 00a83276a..632b00517 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1* or *val2*.
**Default**: a value | diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.html b/tests/results/test/60_0family_dynamic_variable_suffix.html index 729b60ea0..d66e95b61 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test/60_0family_dynamic_variable_suffix.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.md b/tests/results/test/60_0family_dynamic_variable_suffix.md index a8fac5282..78f73955f 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.sh b/tests/results/test/60_0family_dynamic_variable_suffix.sh index f99a80612..53ca187c1 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test/60_0family_dynamic_variable_suffix.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 aaeb0eb9f..3f89a7839 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,25 +11,21 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md index 5af6dd412..aacd28ded 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1* or *val2*.
**Default**: a value | 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 c81bb3074..fee3f962b 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.html +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md index e7aa51020..184a4027e 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh index 852feca0d..de343c1fa 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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.adoc b/tests/results/test/60_0family_mode.adoc index 316c2a323..21be3384d 100644 --- a/tests/results/test/60_0family_mode.adoc +++ b/tests/results/test/60_0family_mode.adoc @@ -1,18 +1,16 @@ == A family +==== +**๐Ÿ›ˆ Informations** -**family** - +**family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test/60_0family_mode.gitlab.md b/tests/results/test/60_0family_mode.gitlab.md index 368d8bf07..71d658ae3 100644 --- a/tests/results/test/60_0family_mode.gitlab.md +++ b/tests/results/test/60_0family_mode.gitlab.md @@ -1,8 +1,9 @@
A family ->>> [!note] Informations -
**family**
`basic` ->>> +> [!note] Informations +> **family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| | **family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non | diff --git a/tests/results/test/60_0family_mode.md b/tests/results/test/60_0family_mode.md index 3bd64f29f..2da9ccdd6 100644 --- a/tests/results/test/60_0family_mode.md +++ b/tests/results/test/60_0family_mode.md @@ -1,10 +1,9 @@ # A family - - -| Informations | -|:------------| -| **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 5105a0310..b6f7dfefa 100644 --- a/tests/results/test/60_0family_mode.sh +++ b/tests/results/test/60_0family_mode.sh @@ -1,12 +1,9 @@ - - A family - -family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 297540320..5bc480322 100644 --- a/tests/results/test/60_1family_dynamic_jinja.adoc +++ b/tests/results/test/60_1family_dynamic_jinja.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,25 +11,21 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__1__** + -**dyn__2__** - -This family builds families dynamically. - -`standard` - +**dyn__2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: index of suffix value - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__1__.var** + +| **dyn__1__.var** + **dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md index ebf813d1f..a09e3df37 100644 --- a/tests/results/test/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test/60_1family_dynamic_jinja.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*1***
**dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value ->>> +> [!note] Informations +> **dyn*1***\ +> **dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: index of suffix value + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **dyn*1*.var**
**dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | diff --git a/tests/results/test/60_1family_dynamic_jinja.html b/tests/results/test/60_1family_dynamic_jinja.html index 4ba807597..9ce04c443 100644 --- a/tests/results/test/60_1family_dynamic_jinja.html +++ b/tests/results/test/60_1family_dynamic_jinja.html @@ -10,7 +10,9 @@

A dynamic family

-dyn1
dyn2 +dyn1 + +dyn2 This family builds families dynamically. diff --git a/tests/results/test/60_1family_dynamic_jinja.md b/tests/results/test/60_1family_dynamic_jinja.md index 114866400..8d1908ff8 100644 --- a/tests/results/test/60_1family_dynamic_jinja.md +++ b/tests/results/test/60_1family_dynamic_jinja.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*1***
**dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value | +> **๐Ÿ›ˆ Informations** +> +> **dyn*1***\ +> **dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: index of suffix value | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_1family_dynamic_jinja.sh b/tests/results/test/60_1family_dynamic_jinja.sh index 53b4aafa5..5ae7c43a5 100644 --- a/tests/results/test/60_1family_dynamic_jinja.sh +++ b/tests/results/test/60_1family_dynamic_jinja.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dyn1 -dyn2 - -This family builds families dynamically. - - standard  - -Identifiers: index of suffix value - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 82a5678be..23bafc59e 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,43 +11,37 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var1" - +==== === A family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.family** + -**dyn__val2__.family** - +**dyn__val2__.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.family.var** + +| Variable | Description +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md index 23ab579eb..03c550d80 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,14 +4,20 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" ->>> +> [!note] Informations +> **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` ->>> +> [!note] Informations +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `basic` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| | **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. | 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 34008409e..85a1d2f1f 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,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A family

-dynval1.family
dynval2.family +dynval1.family + +dynval2.family basic diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.md index 4cac6db43..39698bee0 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,21 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var1" ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.sh index 4bd90d5c6..8ca196be2 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 @@ -3,34 +3,26 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "var1" A family - -dynval1.family -dynval2.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 0bc4bd318..9fddf31a9 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -14,44 +11,38 @@ A identifier variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== === A family inside dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.family** + -**dyn__val2__.family** - +**dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index bb1173df8..3f3a4d437 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,14 +4,20 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" ->>> +> [!note] Informations +> **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` ->>> +> [!note] Informations +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | 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 a4ce14176..48acaf8ca 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,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A family inside dynamic family

-dynval1.family
dynval2.family +dynval1.family + +dynval2.family standard diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.md index e125bc2ae..775a4436d 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,21 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" ## A family inside dynamic family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.sh index 9ea9da296..dfc00128e 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 @@ -3,34 +3,26 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 cef06fbe4..671803831 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 @@ -14,44 +11,38 @@ A identifier variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== === A family inside dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.family** + -**dyn__val2__.family** - +**dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index 8c3444ef8..5b83cf885 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,14 +4,20 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" ->>> +> [!note] Informations +> **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` ->>> +> [!note] Informations +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | 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 81347f07b..0c259a888 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,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A family inside dynamic family

-dynval1.family
dynval2.family +dynval1.family + +dynval2.family standard diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index b6b0ea5f1..fcf2cc12a 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,21 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" ## A family inside dynamic family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index e57063a02..961ea5859 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 @@ -3,34 +3,26 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 015f23d16..345b73a44 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,43 +11,37 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var1" - +==== === A family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.family** + -**dyn__val2__.family** - +**dyn__val2__.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.family.var** + +| Variable | Description +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index 24996bbb7..36509d5ea 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,14 +4,20 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" ->>> +> [!note] Informations +> **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` ->>> +> [!note] Informations +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `basic` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| | **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. | 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 9a46f03b2..0a1807ee3 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,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A family

-dynval1.family
dynval2.family +dynval1.family + +dynval2.family basic diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.md index 3097299eb..a26b2dfd4 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,21 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var1" ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 1c3a92033..79b78a794 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 @@ -3,34 +3,26 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "var1" A family - -dynval1.family -dynval2.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6dd336903..7a6524450 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test/60_2family_dynamic_outside_calc.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 @@ -14,36 +11,29 @@ A suffx variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var1" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md index e381c841c..96e856811 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffx variable`](#var1)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | diff --git a/tests/results/test/60_2family_dynamic_outside_calc.html b/tests/results/test/60_2family_dynamic_outside_calc.html index 8b72662a9..d11da3ab7 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.html +++ b/tests/results/test/60_2family_dynamic_outside_calc.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_2family_dynamic_outside_calc.md b/tests/results/test/60_2family_dynamic_outside_calc.md index cd3271f20..efdd56c8a 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_outside_calc.sh b/tests/results/test/60_2family_dynamic_outside_calc.sh index 2ccf4c9b5..21025100a 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test/60_2family_dynamic_outside_calc.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 e6fd4f066..d422cd965 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 @@ -14,36 +11,29 @@ A suffx variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var1" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md index c21efa356..1b3436a77 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#var1)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffx variable`](#var1)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | 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 040bf620e..41d17e7f8 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.html +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.md index 2ae343059..435354280 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh index c48d8ba75..8cac7df79 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 e59c72966..b0da87def 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,25 +11,21 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md index d72926b39..c6099a356 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier | diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.html b/tests/results/test/60_5family_dynamic_calc_suffix2.html index cfbd96f22..1ab9331e3 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.md b/tests/results/test/60_5family_dynamic_calc_suffix2.md index 6ecdaac90..519cab538 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.sh b/tests/results/test/60_5family_dynamic_calc_suffix2.sh index 4bb8d80be..dc7f5aa78 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 8aec2c3f5..c24fc5e80 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,25 +11,21 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md index f55a57ba4..38d0d69e4 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier | 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 a028890c8..762d7b6a3 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md index d01ece1f7..960b1cabf 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh index a7c860818..2c9dd2674 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 4d097b8b5..807356fe2 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.adoc @@ -1,27 +1,23 @@ == dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md index b2abfadcc..bba2bd0d4 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,8 +1,12 @@
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A dynamic variable.
**Disabled**: when the identifier is "val1" | 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 b121311db..5d159cc71 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.html @@ -1,6 +1,8 @@

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

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md index f615074fd..0d90fce35 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.md @@ -1,10 +1,12 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh index 87cf98c90..4ab9ece58 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,19 +1,14 @@ - - dynval1 or dynval2 - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 82358cfde..2c4458105 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -14,25 +11,21 @@ A identifier variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md index 3ea3afa49..d3edad891 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix | 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 3bf770575..6ccece27f 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.html +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.md b/tests/results/test/60_5family_dynamic_calc_suffix_param.md index d0ae74acd..660219401 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh index 8f3cccd62..21a4b6448 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 79f137338..61402b006 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 @@ -14,25 +11,21 @@ A identifier variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` - +**dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md index e26c16b4d..10efdec69 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix | 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 0bfe799d3..d3b9d13bb 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,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md index 0a4c05927..8f0cee905 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.sh index f7e0698f6..2615d930e 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 @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 d2f2b89fc..3a6778c5a 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,35 +11,28 @@ A suffix variable. + == dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "dynval1.var" |==== diff --git a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md index e066ac703..c4b27ceff 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md @@ -4,9 +4,13 @@
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var1)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_5family_dynamic_calc_variable.html b/tests/results/test/60_5family_dynamic_calc_variable.html index 988a72ee5..e0ace0ff5 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.html +++ b/tests/results/test/60_5family_dynamic_calc_variable.html @@ -10,7 +10,9 @@

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

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_variable.md b/tests/results/test/60_5family_dynamic_calc_variable.md index 778df4a12..5b0fb5efe 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.md @@ -4,11 +4,13 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable.sh b/tests/results/test/60_5family_dynamic_calc_variable.sh index 99101ad51..db72caa1e 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 b49535162..d82b146a7 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.adoc @@ -1,36 +1,29 @@ == A dynamic famify for __val1__ or A dynamic famify for __val2__ +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **dyn__val1__.var2** + **dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "dyn__val1__.var1" has the value "val1" -* when the variable "dyn__val2__.var1" has the value "val1" +* when the variable "dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md index 75683bafd..29eecef6d 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,8 +1,12 @@
A dynamic famify for *val1* or A dynamic famify for *val2* ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 ee237eb5e..0f5aa00a9 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.html +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.html @@ -1,6 +1,8 @@

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

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md index d6337b832..d545246f2 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.md @@ -1,10 +1,12 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh index 86a7a0947..e6ed080da 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.sh @@ -1,19 +1,14 @@ - - A dynamic famify for val1 or A dynamic famify for val2 - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: +โ–Œ  โ€ข val1 +โ–Œ  โ€ข val2 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -24,9 +19,9 @@ This family builds families dynamically. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable "dynval1.var1" โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable "dynval1.var1" โ”‚ โ”‚ disabled  โ”‚ has the value "val1" โ”‚ -โ”‚ โ”‚ - when the variable "dynval2.var1" โ”‚ +โ”‚ โ”‚ โ€ข when the variable "dynval2.var1" โ”‚ โ”‚ โ”‚ has the value "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.adoc index 80279307b..cbed07685 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,37 +1,30 @@ == A dynamic famify for __val1__ or A dynamic famify for __val2__ +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: when the variable "dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md index a3dd67a2a..c186a9cc9 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,8 +1,12 @@
A dynamic famify for *val1* or A dynamic famify for *val2* ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var1**
**dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 2c61b8831..ae6f6d906 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,6 +1,8 @@

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

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md index 8a0030177..f7d4867f1 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.md @@ -1,10 +1,12 @@ # A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh index e38f9e74c..19ef835b5 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,19 +1,14 @@ - - A dynamic famify for val1 or A dynamic famify for val2 - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 f7a190e29..d41e41ee5 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,35 +11,28 @@ A suffix variable. + == dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "dynval1.var" if it is defined |==== diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md index 299fcaca2..2980c69bd 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,9 +4,13 @@
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var1)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var1)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 e45134442..8027cb243 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.html +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.html @@ -10,7 +10,9 @@

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

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.md index c11474bcc..4ab2be245 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.md @@ -4,11 +4,13 @@ # dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var1" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh index 682144a0c..292bcedd7 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 a5d7cec32..766e0ef53 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.adoc @@ -1,48 +1,40 @@ == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`standard` `__hidden__` - - -**Hidden**: if suffix == 'val2' - +**dyn__val2__** + +This family builds families dynamically. + +`standard` `__hidden__` + +**Hidden**: if suffix == 'val2' + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== === A family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.family** + -**dyn__val2__.family** - +**dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.family.var** + +| Variable | Description +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md index 8efbbc80a..91db462cb 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md @@ -1,17 +1,24 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if suffix == 'val2'\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **dyn*val1*.var**
**dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
A family ->>> [!note] Informations -
**dyn*val1*.family**
**dyn*val2*.family**
`standard` ->>> +> [!note] Informations +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| | **dyn*val1*.family.var**
**dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A new variable. | diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.html b/tests/results/test/60_5family_dynamic_hidden_suffix.html index a9b1258ff..f277992b7 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.html @@ -1,6 +1,8 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -22,7 +24,9 @@ This family builds families dynamically.

A family

-dynval1.family
dynval2.family +dynval1.family + +dynval2.family standard diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.md b/tests/results/test/60_5family_dynamic_hidden_suffix.md index 4ba998d40..ac4189951 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.md @@ -1,10 +1,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if suffix == 'val2'\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +15,11 @@ ## A family - - -| Informations | -|:------------| -| **dyn*val1*.family**
**dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.family**\ +> **dyn*val2*.family**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.sh b/tests/results/test/60_5family_dynamic_hidden_suffix.sh index c884666db..8a79b3101 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.sh @@ -1,21 +1,15 @@ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - standard   hidden  - -Hidden: if suffix == 'val2' - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard   hidden  +โ–Œ Hidden: if suffix == 'val2' +โ–Œ Identifiers: +โ–Œ  โ€ข val1 +โ–Œ  โ€ข val2 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -24,16 +18,13 @@ This family builds families dynamically. โ”‚ dynval2.var โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -dynval1.family -dynval2.family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 ea152a49b..349e8ee88 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,36 +11,29 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn___val1__** + -**dyn___val2__** - -This family builds families dynamically. - -`standard` - +**dyn___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "dyn_val1.var" |==== diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md index 006843495..6ed709fc7 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn_*val1***\ +> **dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| | **dyn_*val1*.var**
**dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier | 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 69d4e5cf2..107dabbb6 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.html +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.html @@ -10,7 +10,9 @@

A dynamic family

-dyn_val1
dyn_val2 +dyn_val1 + +dyn_val2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md index bb3dd4d10..3e66440bb 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn_*val1***\ +> **dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh index 716b898ed..798e628e0 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.sh @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dyn_val1 -dyn_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dyn_val1 +โ–Œ dyn_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.adoc index b7618d0f8..7ac0b17fb 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 @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 @@ -14,36 +11,29 @@ Asuffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn___val1__** + -**dyn___val2__** - -This family builds families dynamically. - -`standard` - +**dyn___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "dyn_val1.var" if it is defined |==== diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 283d83ee8..23bc5c1ae 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,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#var)" ->>> +> [!note] Informations +> **dyn_*val1***\ +> **dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`Asuffix variable`](#var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| | **dyn_*val1*.var**
**dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier | 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 bd97e4245..4c81beabd 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,7 +10,9 @@

A dynamic family

-dyn_val1
dyn_val2 +dyn_val1 + +dyn_val2 This family builds families dynamically. diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md index 48a971295..120e1280b 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn_*val1***
**dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn_*val1***\ +> **dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.sh index 8b86f8560..5ffbf98bf 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 @@ -3,23 +3,18 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dyn_val1 -dyn_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dyn_val1 +โ–Œ dyn_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test/60_6family_dynamic_leadership.adoc b/tests/results/test/60_6family_dynamic_leadership.adoc index b2b24b1ba..95c15c165 100644 --- a/tests/results/test/60_6family_dynamic_leadership.adoc +++ b/tests/results/test/60_6family_dynamic_leadership.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -14,46 +11,36 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.leadership** + -**dyn__val2__.leadership** - -This family contains lists of variable blocks. - +**dyn__val2__.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md index c3a09949c..aef46c38e 100644 --- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md @@ -4,14 +4,21 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" +
A leadership ->>> [!note] Informations -
**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **dyn*val1*.leadership**\ +> **dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **dyn*val1*.leadership.leader**
**dyn*val2*.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/60_6family_dynamic_leadership.html b/tests/results/test/60_6family_dynamic_leadership.html index 73aaef980..416b9ee11 100644 --- a/tests/results/test/60_6family_dynamic_leadership.html +++ b/tests/results/test/60_6family_dynamic_leadership.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A leadership

-dynval1.leadership
dynval2.leadership +dynval1.leadership + +dynval2.leadership This family contains lists of variable blocks. diff --git a/tests/results/test/60_6family_dynamic_leadership.md b/tests/results/test/60_6family_dynamic_leadership.md index 7cac59e2d..1262f9477 100644 --- a/tests/results/test/60_6family_dynamic_leadership.md +++ b/tests/results/test/60_6family_dynamic_leadership.md @@ -4,19 +4,22 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" ## A leadership - - -| Informations | -|:------------| -| **dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.leadership**\ +> **dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_6family_dynamic_leadership.sh b/tests/results/test/60_6family_dynamic_leadership.sh index b7ae9ab00..b3a2b82de 100644 --- a/tests/results/test/60_6family_dynamic_leadership.sh +++ b/tests/results/test/60_6family_dynamic_leadership.sh @@ -3,36 +3,27 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "var" A leadership - -dynval1.leadership -dynval2.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 f59ca6399..f06e83a49 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test/60_6family_dynamic_leadership_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -14,46 +11,36 @@ A suffix variable. + == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "var" - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** **dyn__val1__.leadership** + -**dyn__val2__.leadership** - -This family contains lists of variable blocks. - +**dyn__val2__.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md index dfe0eaee2..7b5a9ff97 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md @@ -4,14 +4,21 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#var)" +
A leadership ->>> [!note] Informations -
**dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **dyn*val1*.leadership**\ +> **dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **dyn*val1*.leadership.leader**
**dyn*val2*.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.html b/tests/results/test/60_6family_dynamic_leadership_empty.html index 801f63b4c..7ac0bfb7d 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test/60_6family_dynamic_leadership_empty.html @@ -10,7 +10,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. @@ -20,7 +22,9 @@ This family builds families dynamically.

A leadership

-dynval1.leadership
dynval2.leadership +dynval1.leadership + +dynval2.leadership This family contains lists of variable blocks. diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.md b/tests/results/test/60_6family_dynamic_leadership_empty.md index 33ee81b07..72fe939e0 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.md @@ -4,19 +4,22 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "var" ## A leadership - - -| Informations | -|:------------| -| **dyn*val1*.leadership**
**dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1*.leadership**\ +> **dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.sh b/tests/results/test/60_6family_dynamic_leadership_empty.sh index 3e56172cf..1561525ca 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test/60_6family_dynamic_leadership_empty.sh @@ -3,36 +3,27 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ dynval1 +โ–Œ dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "var" A leadership - -dynval1.leadership -dynval2.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 b21286d0a..fc5304635 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test/60_9family_dynamic_calc_both.adoc @@ -1,37 +1,30 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + **Default**: val2 |==== == A dynamic family +==== +**๐Ÿ›ˆ Informations** **dyn__val1__** + -**dyn__val2__** - -This family builds families dynamically. - -`basic` - +**dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * the value of the variable "var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.vardyn** + +| Variable | Description +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md index e26a8fc4b..7088350a0 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md @@ -4,9 +4,13 @@
A dynamic family ->>> [!note] Informations -
**dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#var)" ->>> +> [!note] Informations +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **dyn*val1*.vardyn**
**dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test/60_9family_dynamic_calc_both.html b/tests/results/test/60_9family_dynamic_calc_both.html index 502eba81c..97c112a4a 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.html +++ b/tests/results/test/60_9family_dynamic_calc_both.html @@ -9,7 +9,9 @@

A dynamic family

-dynval1
dynval2 +dynval1 + +dynval2 This family builds families dynamically. diff --git a/tests/results/test/60_9family_dynamic_calc_both.md b/tests/results/test/60_9family_dynamic_calc_both.md index d6d6df307..55c0d820a 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.md +++ b/tests/results/test/60_9family_dynamic_calc_both.md @@ -4,11 +4,13 @@ # A dynamic family - - -| Informations | -|:------------| -| **dyn*val1***
**dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "var" | +> **๐Ÿ›ˆ Informations** +> +> **dyn*val1***\ +> **dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- the value of the variable "var" | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/60_9family_dynamic_calc_both.sh b/tests/results/test/60_9family_dynamic_calc_both.sh index e11ce0ad9..ec41e04cc 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.sh +++ b/tests/results/test/60_9family_dynamic_calc_both.sh @@ -4,22 +4,17 @@ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -dynval1 -dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- the value of the variable "var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 564210fb0..1cee74f4b 100644 --- a/tests/results/test/68_0family_leadership_mode.adoc +++ b/tests/results/test/68_0family_leadership_mode.adoc @@ -1,29 +1,20 @@ == A leadership +==== +**๐Ÿ›ˆ Informations** -**leader** - -This family contains lists of variable blocks. - +**leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md index a555e1855..ae9a1701d 100644 --- a/tests/results/test/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test/68_0family_leadership_mode.gitlab.md @@ -1,8 +1,10 @@
A leadership ->>> [!note] Informations -
**leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `unique` `multiple` | A leader. | diff --git a/tests/results/test/68_0family_leadership_mode.md b/tests/results/test/68_0family_leadership_mode.md index 870946735..9609f3525 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 - - -| Informations | -|:------------| -| **leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test/68_0family_leadership_mode.sh b/tests/results/test/68_0family_leadership_mode.sh index c8bc2de39..02a09b6b8 100644 --- a/tests/results/test/68_0family_leadership_mode.sh +++ b/tests/results/test/68_0family_leadership_mode.sh @@ -1,14 +1,10 @@ - - A leadership - -leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_examples/00_0version_underscore.adoc b/tests/results/test_examples/00_0version_underscore.adoc index 129a70c9c..087a7bc0b 100644 --- a/tests/results/test_examples/00_0version_underscore.adoc +++ b/tests/results/test_examples/00_0version_underscore.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -version: example # A variable +version: example ---- == Example with all variables modifiable [,yaml] ---- --- -version: example # A variable +version: example ---- diff --git a/tests/results/test_examples/00_0version_underscore.gitlab.md b/tests/results/test_examples/00_0version_underscore.gitlab.md index 4cc6370bb..40f3c25d7 100644 --- a/tests/results/test_examples/00_0version_underscore.gitlab.md +++ b/tests/results/test_examples/00_0version_underscore.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -version: example # A variable +version: example ```
@@ -10,7 +10,7 @@ version: example # A variable ```yaml --- -version: example # A variable +version: example ```
diff --git a/tests/results/test_examples/00_0version_underscore.html b/tests/results/test_examples/00_0version_underscore.html index ca361c42c..ed8a788c2 100644 --- a/tests/results/test_examples/00_0version_underscore.html +++ b/tests/results/test_examples/00_0version_underscore.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
version: example              # A variable

Example with all variables modifiable

+
version: example

Example with all variables modifiable

-
version: example              # A variable
\ No newline at end of file +
version: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_0version_underscore.sh b/tests/results/test_examples/00_0version_underscore.sh index 3324f1bb7..37f104d7f 100644 --- a/tests/results/test_examples/00_0version_underscore.sh +++ b/tests/results/test_examples/00_0version_underscore.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -version: example # A variable  - - +version: example  Example with all variables modifiable - ---  -version: example # A variable  +version: example  diff --git a/tests/results/test_examples/00_1empty_variable.sh b/tests/results/test_examples/00_1empty_variable.sh index 043486299..6347eaacb 100644 --- a/tests/results/test_examples/00_1empty_variable.sh +++ b/tests/results/test_examples/00_1empty_variable.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  empty: example  - - Example with all variables modifiable - ---  empty: example  diff --git a/tests/results/test_examples/00_2default_calculated.adoc b/tests/results/test_examples/00_2default_calculated.adoc index 21635b6a2..2a8bdfe75 100644 --- a/tests/results/test_examples/00_2default_calculated.adoc +++ b/tests/results/test_examples/00_2default_calculated.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: no # A first variable -var2: # A second variable +var1: no +var2: - no ---- diff --git a/tests/results/test_examples/00_2default_calculated.gitlab.md b/tests/results/test_examples/00_2default_calculated.gitlab.md index 601c2d98f..1da7766b9 100644 --- a/tests/results/test_examples/00_2default_calculated.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: no # A first variable -var2: # A second variable +var1: no +var2: - no ```
diff --git a/tests/results/test_examples/00_2default_calculated.html b/tests/results/test_examples/00_2default_calculated.html index 7e811ac02..a45130c61 100644 --- a/tests/results/test_examples/00_2default_calculated.html +++ b/tests/results/test_examples/00_2default_calculated.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1: no                      # A first variable
-var2:                         # A second variable
+
var1: no
+var2:
   - no
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated.sh b/tests/results/test_examples/00_2default_calculated.sh index 315fb9dda..50f0bce15 100644 --- a/tests/results/test_examples/00_2default_calculated.sh +++ b/tests/results/test_examples/00_2default_calculated.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: no # A first variable  -var2: # A second variable  +var1: no  +var2:   - no  diff --git a/tests/results/test_examples/00_2default_calculated_multi.adoc b/tests/results/test_examples/00_2default_calculated_multi.adoc index 94ec13200..ce0a82c1a 100644 --- a/tests/results/test_examples/00_2default_calculated_multi.adoc +++ b/tests/results/test_examples/00_2default_calculated_multi.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var1: # A first variable +var1: - no - yes - maybe -var2: # A second variable +var2: - no - yes - maybe diff --git a/tests/results/test_examples/00_2default_calculated_multi.gitlab.md b/tests/results/test_examples/00_2default_calculated_multi.gitlab.md index b49452174..ee9991268 100644 --- a/tests/results/test_examples/00_2default_calculated_multi.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_multi.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -var1: # A first variable +var1: - no - yes - maybe -var2: # A second variable +var2: - no - yes - maybe diff --git a/tests/results/test_examples/00_2default_calculated_multi.html b/tests/results/test_examples/00_2default_calculated_multi.html index 94e238a9c..d046b3caf 100644 --- a/tests/results/test_examples/00_2default_calculated_multi.html +++ b/tests/results/test_examples/00_2default_calculated_multi.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
var1:                         # A first variable
+
var1:
   - no
   - yes
   - maybe
-var2:                         # A second variable
+var2:
   - no
   - yes
   - maybe
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_multi.sh b/tests/results/test_examples/00_2default_calculated_multi.sh index ef8d1a732..635220743 100644 --- a/tests/results/test_examples/00_2default_calculated_multi.sh +++ b/tests/results/test_examples/00_2default_calculated_multi.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var1: # A first variable  +var1:   - no   - yes   - maybe  -var2: # A second variable  +var2:   - no   - yes   - maybe  diff --git a/tests/results/test_examples/00_2default_calculated_params_permissive.adoc b/tests/results/test_examples/00_2default_calculated_params_permissive.adoc index 3edda320a..0782ab4b7 100644 --- a/tests/results/test_examples/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_examples/00_2default_calculated_params_permissive.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var2: a_value # A second variable +var2: a_value ---- diff --git a/tests/results/test_examples/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_examples/00_2default_calculated_params_permissive.gitlab.md index 395e6c2eb..928d3ac7c 100644 --- a/tests/results/test_examples/00_2default_calculated_params_permissive.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_params_permissive.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var2: a_value # A second variable +var2: a_value ```
diff --git a/tests/results/test_examples/00_2default_calculated_params_permissive.html b/tests/results/test_examples/00_2default_calculated_params_permissive.html index 60affd8ec..31349babe 100644 --- a/tests/results/test_examples/00_2default_calculated_params_permissive.html +++ b/tests/results/test_examples/00_2default_calculated_params_permissive.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var2: a_value                 # A second variable
\ No newline at end of file +
var2: a_value
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_params_permissive.sh b/tests/results/test_examples/00_2default_calculated_params_permissive.sh index 8178e759f..ee81eac9e 100644 --- a/tests/results/test_examples/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_examples/00_2default_calculated_params_permissive.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var2: a_value # A second variable  +var2: a_value  diff --git a/tests/results/test_examples/00_2default_calculated_variable.adoc b/tests/results/test_examples/00_2default_calculated_variable.adoc index d8d129203..34219a67d 100644 --- a/tests/results/test_examples/00_2default_calculated_variable.adoc +++ b/tests/results/test_examples/00_2default_calculated_variable.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: # A first variable +var1: - example.net ---- == Example with all variables modifiable @@ -11,8 +11,8 @@ var1: # A first variable [,yaml] ---- --- -var1: # A first variable +var1: - example.net -var2: # A second variable +var2: - example.net ---- diff --git a/tests/results/test_examples/00_2default_calculated_variable.gitlab.md b/tests/results/test_examples/00_2default_calculated_variable.gitlab.md index cefd2275b..ac7023c83 100644 --- a/tests/results/test_examples/00_2default_calculated_variable.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A first variable +var1: - example.net ```
@@ -11,9 +11,9 @@ var1: # A first variable ```yaml --- -var1: # A first variable +var1: - example.net -var2: # A second variable +var2: - example.net ```
diff --git a/tests/results/test_examples/00_2default_calculated_variable.html b/tests/results/test_examples/00_2default_calculated_variable.html index 196fdc830..d172e7914 100644 --- a/tests/results/test_examples/00_2default_calculated_variable.html +++ b/tests/results/test_examples/00_2default_calculated_variable.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
var1:                         # A first variable
+
var1:
   - example.net

Example with all variables modifiable

-
var1:                         # A first variable
+
var1:
   - example.net
-var2:                         # A second variable
+var2:
   - example.net
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_variable.sh b/tests/results/test_examples/00_2default_calculated_variable.sh index abbc81b5f..58bb1ee58 100644 --- a/tests/results/test_examples/00_2default_calculated_variable.sh +++ b/tests/results/test_examples/00_2default_calculated_variable.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -var1: # A first variable  +var1:   - example.net  - - Example with all variables modifiable - ---  -var1: # A first variable  +var1:   - example.net  -var2: # A second variable  +var2:   - example.net  diff --git a/tests/results/test_examples/00_2default_calculated_variable_description.adoc b/tests/results/test_examples/00_2default_calculated_variable_description.adoc index ae79637e7..1e16b08e0 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_examples/00_2default_calculated_variable_description.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var1: example # A first variable +var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_examples/00_2default_calculated_variable_description.gitlab.md index afdbb277d..9dcc86315 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_variable_description.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: example # A first variable +var1: example ```
@@ -10,8 +10,8 @@ var1: example # A first variable ```yaml --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_2default_calculated_variable_description.html b/tests/results/test_examples/00_2default_calculated_variable_description.html index 10397d393..6d424fc0f 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description.html +++ b/tests/results/test_examples/00_2default_calculated_variable_description.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var1: example                 # A first variable

Example with all variables modifiable

+
var1: example

Example with all variables modifiable

-
var1: example                 # A first variable
-var2: example                 # A second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_variable_description.sh b/tests/results/test_examples/00_2default_calculated_variable_description.sh index 852c4d363..adc9640a8 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description.sh +++ b/tests/results/test_examples/00_2default_calculated_variable_description.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A first variable  - - +var1: example  Example with all variables modifiable - ---  -var1: example # A first variable  -var2: example # A second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.adoc index 2525e573e..3ae652cca 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -var1: example # A first variable -var3: example # A new variable +var1: example +var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A first variable -var2: example # A second variable -var3: example # A new variable +var1: example +var2: example +var3: example ---- diff --git a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.gitlab.md index e518db842..bf275043d 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # A first variable -var3: example # A new variable +var1: example +var3: example ```
@@ -11,9 +11,9 @@ var3: example # A new variable ```yaml --- -var1: example # A first variable -var2: example # A second variable -var3: example # A new variable +var1: example +var2: example +var3: example ```
diff --git a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.html b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.html index eab02b8cb..b0cc76b9d 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.html +++ b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
var1: example                 # A first variable
-var3: example                 # A new variable

Example with all variables modifiable

+
var1: example
+var3: example

Example with all variables modifiable

-
var1: example                 # A first variable
-var2: example                 # A second variable
-var3: example                 # A new variable
\ No newline at end of file +
var1: example
+var2: example
+var3: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.sh index f692d5399..5ef6f0748 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_examples/00_2default_calculated_variable_description_multi_line.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A first variable  -var3: example # A new variable  - - +var1: example  +var3: example  Example with all variables modifiable - ---  -var1: example # A first variable  -var2: example # A second variable  -var3: example # A new variable  +var1: example  +var2: example  +var3: example  diff --git a/tests/results/test_examples/00_2default_calculated_variable_transitive.adoc b/tests/results/test_examples/00_2default_calculated_variable_transitive.adoc index d8d129203..34219a67d 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_examples/00_2default_calculated_variable_transitive.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: # A first variable +var1: - example.net ---- == Example with all variables modifiable @@ -11,8 +11,8 @@ var1: # A first variable [,yaml] ---- --- -var1: # A first variable +var1: - example.net -var2: # A second variable +var2: - example.net ---- diff --git a/tests/results/test_examples/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_examples/00_2default_calculated_variable_transitive.gitlab.md index cefd2275b..ac7023c83 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_transitive.gitlab.md +++ b/tests/results/test_examples/00_2default_calculated_variable_transitive.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A first variable +var1: - example.net ```
@@ -11,9 +11,9 @@ var1: # A first variable ```yaml --- -var1: # A first variable +var1: - example.net -var2: # A second variable +var2: - example.net ```
diff --git a/tests/results/test_examples/00_2default_calculated_variable_transitive.html b/tests/results/test_examples/00_2default_calculated_variable_transitive.html index 196fdc830..d172e7914 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_transitive.html +++ b/tests/results/test_examples/00_2default_calculated_variable_transitive.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
var1:                         # A first variable
+
var1:
   - example.net

Example with all variables modifiable

-
var1:                         # A first variable
+
var1:
   - example.net
-var2:                         # A second variable
+var2:
   - example.net
\ No newline at end of file diff --git a/tests/results/test_examples/00_2default_calculated_variable_transitive.sh b/tests/results/test_examples/00_2default_calculated_variable_transitive.sh index abbc81b5f..58bb1ee58 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_examples/00_2default_calculated_variable_transitive.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -var1: # A first variable  +var1:   - example.net  - - Example with all variables modifiable - ---  -var1: # A first variable  +var1:   - example.net  -var2: # A second variable  +var2:   - example.net  diff --git a/tests/results/test_examples/00_4load_subfolder.adoc b/tests/results/test_examples/00_4load_subfolder.adoc index ae88bf867..e6a432e62 100644 --- a/tests/results/test_examples/00_4load_subfolder.adoc +++ b/tests/results/test_examples/00_4load_subfolder.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var1: example # A variable -var2: example # A variable +var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A variable -var2: example # A variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_4load_subfolder.gitlab.md b/tests/results/test_examples/00_4load_subfolder.gitlab.md index 779676c42..c07364179 100644 --- a/tests/results/test_examples/00_4load_subfolder.gitlab.md +++ b/tests/results/test_examples/00_4load_subfolder.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # A variable -var2: example # A variable +var1: example +var2: example ```
@@ -11,8 +11,8 @@ var2: example # A variable ```yaml --- -var1: example # A variable -var2: example # A variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_4load_subfolder.html b/tests/results/test_examples/00_4load_subfolder.html index 2334b0bd3..0bf2e0214 100644 --- a/tests/results/test_examples/00_4load_subfolder.html +++ b/tests/results/test_examples/00_4load_subfolder.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var1: example                 # A variable
-var2: example                 # A variable

Example with all variables modifiable

+
var1: example
+var2: example

Example with all variables modifiable

-
var1: example                 # A variable
-var2: example                 # A variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_4load_subfolder.sh b/tests/results/test_examples/00_4load_subfolder.sh index 35f21b1dc..0381b6ceb 100644 --- a/tests/results/test_examples/00_4load_subfolder.sh +++ b/tests/results/test_examples/00_4load_subfolder.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A variable  -var2: example # A variable  - - +var1: example  +var2: example  Example with all variables modifiable - ---  -var1: example # A variable  -var2: example # A variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_5load_notype.adoc b/tests/results/test_examples/00_5load_notype.adoc index b190de57e..9ad2c6d62 100644 --- a/tests/results/test_examples/00_5load_notype.adoc +++ b/tests/results/test_examples/00_5load_notype.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -without_type: non # A variable +without_type: non ---- diff --git a/tests/results/test_examples/00_5load_notype.gitlab.md b/tests/results/test_examples/00_5load_notype.gitlab.md index ad5cb9047..e41617a61 100644 --- a/tests/results/test_examples/00_5load_notype.gitlab.md +++ b/tests/results/test_examples/00_5load_notype.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -without_type: non # A variable +without_type: non ```
diff --git a/tests/results/test_examples/00_5load_notype.html b/tests/results/test_examples/00_5load_notype.html index 10e575c56..352213ee8 100644 --- a/tests/results/test_examples/00_5load_notype.html +++ b/tests/results/test_examples/00_5load_notype.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
without_type: non             # A variable
\ No newline at end of file +
without_type: non
\ No newline at end of file diff --git a/tests/results/test_examples/00_5load_notype.sh b/tests/results/test_examples/00_5load_notype.sh index 19498dded..f745175cf 100644 --- a/tests/results/test_examples/00_5load_notype.sh +++ b/tests/results/test_examples/00_5load_notype.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -without_type: non # A variable  +without_type: non  diff --git a/tests/results/test_examples/00_6boolean.adoc b/tests/results/test_examples/00_6boolean.adoc index f857d6cd2..8ade55604 100644 --- a/tests/results/test_examples/00_6boolean.adoc +++ b/tests/results/test_examples/00_6boolean.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -var1: true # The first variable -var2: true # The second variable -var3: true # The third variable -var4: false # The forth variable -var5: false # The fifth variable -var6: false # The sixth variable +var1: true +var2: true +var3: true +var4: false +var5: false +var6: false ---- diff --git a/tests/results/test_examples/00_6boolean.gitlab.md b/tests/results/test_examples/00_6boolean.gitlab.md index 512ea1c50..239f2359f 100644 --- a/tests/results/test_examples/00_6boolean.gitlab.md +++ b/tests/results/test_examples/00_6boolean.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -var1: true # The first variable -var2: true # The second variable -var3: true # The third variable -var4: false # The forth variable -var5: false # The fifth variable -var6: false # The sixth variable +var1: true +var2: true +var3: true +var4: false +var5: false +var6: false ```
diff --git a/tests/results/test_examples/00_6boolean.html b/tests/results/test_examples/00_6boolean.html index c5ac2e7f2..47a0e7e84 100644 --- a/tests/results/test_examples/00_6boolean.html +++ b/tests/results/test_examples/00_6boolean.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
var1: true                    # The first variable
-var2: true                    # The second variable
-var3: true                    # The third variable
-var4: false                   # The forth variable
-var5: false                   # The fifth variable
-var6: false                   # The sixth variable
\ No newline at end of file +
var1: true
+var2: true
+var3: true
+var4: false
+var5: false
+var6: false
\ No newline at end of file diff --git a/tests/results/test_examples/00_6boolean.sh b/tests/results/test_examples/00_6boolean.sh index 5de0700b9..faf6bd51c 100644 --- a/tests/results/test_examples/00_6boolean.sh +++ b/tests/results/test_examples/00_6boolean.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -var1: true # The first variable  -var2: true # The second variable  -var3: true # The third variable  -var4: false # The forth variable  -var5: false # The fifth variable  -var6: false # The sixth variable  +var1: true  +var2: true  +var3: true  +var4: false  +var5: false  +var6: false  diff --git a/tests/results/test_examples/00_6boolean_no_mandatory.adoc b/tests/results/test_examples/00_6boolean_no_mandatory.adoc index f65055333..2e3ebc9df 100644 --- a/tests/results/test_examples/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_examples/00_6boolean_no_mandatory.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: true # A variable +variable: true ---- diff --git a/tests/results/test_examples/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_examples/00_6boolean_no_mandatory.gitlab.md index 93241a604..3c702cd83 100644 --- a/tests/results/test_examples/00_6boolean_no_mandatory.gitlab.md +++ b/tests/results/test_examples/00_6boolean_no_mandatory.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: true # A variable +variable: true ```
diff --git a/tests/results/test_examples/00_6boolean_no_mandatory.html b/tests/results/test_examples/00_6boolean_no_mandatory.html index 085437ffa..8b1a8c719 100644 --- a/tests/results/test_examples/00_6boolean_no_mandatory.html +++ b/tests/results/test_examples/00_6boolean_no_mandatory.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: true                # A variable
\ No newline at end of file +
variable: true
\ No newline at end of file diff --git a/tests/results/test_examples/00_6boolean_no_mandatory.sh b/tests/results/test_examples/00_6boolean_no_mandatory.sh index 9917d57fd..ad14c75fc 100644 --- a/tests/results/test_examples/00_6boolean_no_mandatory.sh +++ b/tests/results/test_examples/00_6boolean_no_mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: true # A variable  +variable: true  diff --git a/tests/results/test_examples/00_6choice.adoc b/tests/results/test_examples/00_6choice.adoc index c7461b969..46720bd92 100644 --- a/tests/results/test_examples/00_6choice.adoc +++ b/tests/results/test_examples/00_6choice.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -var1: a_choice # The first variable -var2: a_choice # The second variable +var1: a_choice +var2: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -var1: a_choice # The first variable -var2: a_choice # The second variable -var3: a_choice # The third variable -var4: a_choice # The forth variable -var5: a # The fifth variable -var6: 1 # The sixth variable +var1: a_choice +var2: a_choice +var3: a_choice +var4: a_choice +var5: a +var6: 1 ---- diff --git a/tests/results/test_examples/00_6choice.gitlab.md b/tests/results/test_examples/00_6choice.gitlab.md index dd72172e6..19738f99f 100644 --- a/tests/results/test_examples/00_6choice.gitlab.md +++ b/tests/results/test_examples/00_6choice.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: a_choice # The first variable -var2: a_choice # The second variable +var1: a_choice +var2: a_choice ```
@@ -11,12 +11,12 @@ var2: a_choice # The second variable ```yaml --- -var1: a_choice # The first variable -var2: a_choice # The second variable -var3: a_choice # The third variable -var4: a_choice # The forth variable -var5: a # The fifth variable -var6: 1 # The sixth variable +var1: a_choice +var2: a_choice +var3: a_choice +var4: a_choice +var5: a +var6: 1 ```
diff --git a/tests/results/test_examples/00_6choice.html b/tests/results/test_examples/00_6choice.html index c0e4e56a6..00be96e92 100644 --- a/tests/results/test_examples/00_6choice.html +++ b/tests/results/test_examples/00_6choice.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
var1: a_choice                # The first variable
-var2: a_choice                # The second variable

Example with all variables modifiable

+
var1: a_choice
+var2: a_choice

Example with all variables modifiable

-
var1: a_choice                # The first variable
-var2: a_choice                # The second variable
-var3: a_choice                # The third variable
-var4: a_choice                # The forth variable
-var5: a                       # The fifth variable
-var6: 1                       # The sixth variable
\ No newline at end of file +
var1: a_choice
+var2: a_choice
+var3: a_choice
+var4: a_choice
+var5: a
+var6: 1
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice.sh b/tests/results/test_examples/00_6choice.sh index dbac15134..60fd4cbbe 100644 --- a/tests/results/test_examples/00_6choice.sh +++ b/tests/results/test_examples/00_6choice.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -var1: a_choice # The first variable  -var2: a_choice # The second variable  - - +var1: a_choice  +var2: a_choice  Example with all variables modifiable - ---  -var1: a_choice # The first variable  -var2: a_choice # The second variable  -var3: a_choice # The third variable  -var4: a_choice # The forth variable  -var5: a # The fifth variable  -var6: 1 # The sixth variable  +var1: a_choice  +var2: a_choice  +var3: a_choice  +var4: a_choice  +var5: a  +var6: 1  diff --git a/tests/results/test_examples/00_6choice_calculation.adoc b/tests/results/test_examples/00_6choice_calculation.adoc index 7bb8a8a20..eb38aa270 100644 --- a/tests/results/test_examples/00_6choice_calculation.adoc +++ b/tests/results/test_examples/00_6choice_calculation.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: 9 # A variable +var: 9 ---- diff --git a/tests/results/test_examples/00_6choice_calculation.gitlab.md b/tests/results/test_examples/00_6choice_calculation.gitlab.md index 2397f6719..e22a5dfe1 100644 --- a/tests/results/test_examples/00_6choice_calculation.gitlab.md +++ b/tests/results/test_examples/00_6choice_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: 9 # A variable +var: 9 ```
diff --git a/tests/results/test_examples/00_6choice_calculation.html b/tests/results/test_examples/00_6choice_calculation.html index 8d056ee80..005bea8a6 100644 --- a/tests/results/test_examples/00_6choice_calculation.html +++ b/tests/results/test_examples/00_6choice_calculation.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: 9                        # A variable
\ No newline at end of file +
var: 9
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice_calculation.sh b/tests/results/test_examples/00_6choice_calculation.sh index 2a1515117..74b6f84ea 100644 --- a/tests/results/test_examples/00_6choice_calculation.sh +++ b/tests/results/test_examples/00_6choice_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: 9 # A variable  +var: 9  diff --git a/tests/results/test_examples/00_6choice_link.adoc b/tests/results/test_examples/00_6choice_link.adoc index 3dfdeadb8..2f49ad9ba 100644 --- a/tests/results/test_examples/00_6choice_link.adoc +++ b/tests/results/test_examples/00_6choice_link.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var1: a_choice # The first variable +var1: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -var1: a_choice # The first variable -var2: a_choice # The second variable +var1: a_choice +var2: a_choice ---- diff --git a/tests/results/test_examples/00_6choice_link.gitlab.md b/tests/results/test_examples/00_6choice_link.gitlab.md index cb575b980..7580235c0 100644 --- a/tests/results/test_examples/00_6choice_link.gitlab.md +++ b/tests/results/test_examples/00_6choice_link.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: a_choice # The first variable +var1: a_choice ```
@@ -10,8 +10,8 @@ var1: a_choice # The first variable ```yaml --- -var1: a_choice # The first variable -var2: a_choice # The second variable +var1: a_choice +var2: a_choice ```
diff --git a/tests/results/test_examples/00_6choice_link.html b/tests/results/test_examples/00_6choice_link.html index b4404ad4e..f55fbf3bf 100644 --- a/tests/results/test_examples/00_6choice_link.html +++ b/tests/results/test_examples/00_6choice_link.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var1: a_choice                # The first variable

Example with all variables modifiable

+
var1: a_choice

Example with all variables modifiable

-
var1: a_choice                # The first variable
-var2: a_choice                # The second variable
\ No newline at end of file +
var1: a_choice
+var2: a_choice
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice_link.sh b/tests/results/test_examples/00_6choice_link.sh index bba26c445..188f606df 100644 --- a/tests/results/test_examples/00_6choice_link.sh +++ b/tests/results/test_examples/00_6choice_link.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var1: a_choice # The first variable  - - +var1: a_choice  Example with all variables modifiable - ---  -var1: a_choice # The first variable  -var2: a_choice # The second variable  +var1: a_choice  +var2: a_choice  diff --git a/tests/results/test_examples/00_6choice_variable.adoc b/tests/results/test_examples/00_6choice_variable.adoc index ee225bfd1..975ab171b 100644 --- a/tests/results/test_examples/00_6choice_variable.adoc +++ b/tests/results/test_examples/00_6choice_variable.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable +var2: a ---- diff --git a/tests/results/test_examples/00_6choice_variable.gitlab.md b/tests/results/test_examples/00_6choice_variable.gitlab.md index 435c122fd..6953b11f7 100644 --- a/tests/results/test_examples/00_6choice_variable.gitlab.md +++ b/tests/results/test_examples/00_6choice_variable.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable +var2: a ```
diff --git a/tests/results/test_examples/00_6choice_variable.html b/tests/results/test_examples/00_6choice_variable.html index 227996639..f736850da 100644 --- a/tests/results/test_examples/00_6choice_variable.html +++ b/tests/results/test_examples/00_6choice_variable.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - a
   - b
   - c
-var2: a                       # A first variable
\ No newline at end of file +var2: a
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice_variable.sh b/tests/results/test_examples/00_6choice_variable.sh index 012bdb3bb..1ff2dc2e5 100644 --- a/tests/results/test_examples/00_6choice_variable.sh +++ b/tests/results/test_examples/00_6choice_variable.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - a   - b   - c  -var2: a # A first variable  +var2: a  diff --git a/tests/results/test_examples/00_6choice_variable_link.adoc b/tests/results/test_examples/00_6choice_variable_link.adoc index ead94b457..b7760ee84 100644 --- a/tests/results/test_examples/00_6choice_variable_link.adoc +++ b/tests/results/test_examples/00_6choice_variable_link.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable -var3: a # A third variable +var2: a +var3: a ---- diff --git a/tests/results/test_examples/00_6choice_variable_link.gitlab.md b/tests/results/test_examples/00_6choice_variable_link.gitlab.md index 1fbcf3cf1..91fc8110c 100644 --- a/tests/results/test_examples/00_6choice_variable_link.gitlab.md +++ b/tests/results/test_examples/00_6choice_variable_link.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable -var3: a # A third variable +var2: a +var3: a ```
diff --git a/tests/results/test_examples/00_6choice_variable_link.html b/tests/results/test_examples/00_6choice_variable_link.html index 5876b8a97..89ca41f18 100644 --- a/tests/results/test_examples/00_6choice_variable_link.html +++ b/tests/results/test_examples/00_6choice_variable_link.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - a
   - b
   - c
-var2: a                       # A first variable
-var3: a                       # A third variable
\ No newline at end of file +var2: a +var3: a
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice_variable_link.sh b/tests/results/test_examples/00_6choice_variable_link.sh index 9d9682b5f..87b1055e2 100644 --- a/tests/results/test_examples/00_6choice_variable_link.sh +++ b/tests/results/test_examples/00_6choice_variable_link.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - a   - b   - c  -var2: a # A first variable  -var3: a # A third variable  +var2: a  +var3: a  diff --git a/tests/results/test_examples/00_6choice_variable_link2.adoc b/tests/results/test_examples/00_6choice_variable_link2.adoc index 68b623787..c9e4a9216 100644 --- a/tests/results/test_examples/00_6choice_variable_link2.adoc +++ b/tests/results/test_examples/00_6choice_variable_link2.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable -family: # family - var3: a # A third variable +var2: a +family: + var3: a ---- diff --git a/tests/results/test_examples/00_6choice_variable_link2.gitlab.md b/tests/results/test_examples/00_6choice_variable_link2.gitlab.md index 9ba7c7ce6..f87b8976b 100644 --- a/tests/results/test_examples/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test_examples/00_6choice_variable_link2.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var1: # A second variable +var1: - a - b - c -var2: a # A first variable -family: # family - var3: a # A third variable +var2: a +family: + var3: a ```
diff --git a/tests/results/test_examples/00_6choice_variable_link2.html b/tests/results/test_examples/00_6choice_variable_link2.html index 574ef508c..5cc32882e 100644 --- a/tests/results/test_examples/00_6choice_variable_link2.html +++ b/tests/results/test_examples/00_6choice_variable_link2.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - a
   - b
   - c
-var2: a                       # A first variable
-family:                       # family
-  var3: a                     # A third variable
\ No newline at end of file +var2: a +family: + var3: a
\ No newline at end of file diff --git a/tests/results/test_examples/00_6choice_variable_link2.sh b/tests/results/test_examples/00_6choice_variable_link2.sh index d4e6c075b..a6d02a877 100644 --- a/tests/results/test_examples/00_6choice_variable_link2.sh +++ b/tests/results/test_examples/00_6choice_variable_link2.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - a   - b   - c  -var2: a # A first variable  -family: # family  - var3: a # A third variable  +var2: a  +family:  + var3: a  diff --git a/tests/results/test_examples/00_6custom.adoc b/tests/results/test_examples/00_6custom.adoc index 18333e4e9..d63c3cb55 100644 --- a/tests/results/test_examples/00_6custom.adoc +++ b/tests/results/test_examples/00_6custom.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -custom1: xxx # The first variable +custom1: xxx ---- == Example with all variables modifiable [,yaml] ---- --- -custom1: xxx # The first variable -custom2: value # The seconf variable +custom1: xxx +custom2: value ---- diff --git a/tests/results/test_examples/00_6custom.gitlab.md b/tests/results/test_examples/00_6custom.gitlab.md index 210f8692b..0cbd4fb93 100644 --- a/tests/results/test_examples/00_6custom.gitlab.md +++ b/tests/results/test_examples/00_6custom.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -custom1: xxx # The first variable +custom1: xxx ```
@@ -10,8 +10,8 @@ custom1: xxx # The first variable ```yaml --- -custom1: xxx # The first variable -custom2: value # The seconf variable +custom1: xxx +custom2: value ```
diff --git a/tests/results/test_examples/00_6custom.html b/tests/results/test_examples/00_6custom.html index 76266261b..be5faf37b 100644 --- a/tests/results/test_examples/00_6custom.html +++ b/tests/results/test_examples/00_6custom.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
custom1: xxx                  # The first variable

Example with all variables modifiable

+
custom1: xxx

Example with all variables modifiable

-
custom1: xxx                  # The first variable
-custom2: value                # The seconf variable
\ No newline at end of file +
custom1: xxx
+custom2: value
\ No newline at end of file diff --git a/tests/results/test_examples/00_6custom.sh b/tests/results/test_examples/00_6custom.sh index c8b68c97b..543ac209a 100644 --- a/tests/results/test_examples/00_6custom.sh +++ b/tests/results/test_examples/00_6custom.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -custom1: xxx # The first variable  - - +custom1: xxx  Example with all variables modifiable - ---  -custom1: xxx # The first variable  -custom2: value # The seconf variable  +custom1: xxx  +custom2: value  diff --git a/tests/results/test_examples/00_6domainname.adoc b/tests/results/test_examples/00_6domainname.adoc index d71a08860..aa0b89f80 100644 --- a/tests/results/test_examples/00_6domainname.adoc +++ b/tests/results/test_examples/00_6domainname.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: my.domain.name # A domain name variable +variable: my.domain.name ---- diff --git a/tests/results/test_examples/00_6domainname.gitlab.md b/tests/results/test_examples/00_6domainname.gitlab.md index 8fd8fc60f..1429c2ea3 100644 --- a/tests/results/test_examples/00_6domainname.gitlab.md +++ b/tests/results/test_examples/00_6domainname.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: my.domain.name # A domain name variable +variable: my.domain.name ```
diff --git a/tests/results/test_examples/00_6domainname.html b/tests/results/test_examples/00_6domainname.html index fae19cbb3..b2a8b0adb 100644 --- a/tests/results/test_examples/00_6domainname.html +++ b/tests/results/test_examples/00_6domainname.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: my.domain.name      # A domain name variable
\ No newline at end of file +
variable: my.domain.name
\ No newline at end of file diff --git a/tests/results/test_examples/00_6domainname.sh b/tests/results/test_examples/00_6domainname.sh index 78da443fe..4723446a8 100644 --- a/tests/results/test_examples/00_6domainname.sh +++ b/tests/results/test_examples/00_6domainname.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: my.domain.name # A domain name variable  +variable: my.domain.name  diff --git a/tests/results/test_examples/00_6domainname_params.adoc b/tests/results/test_examples/00_6domainname_params.adoc index d71a08860..aa0b89f80 100644 --- a/tests/results/test_examples/00_6domainname_params.adoc +++ b/tests/results/test_examples/00_6domainname_params.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: my.domain.name # A domain name variable +variable: my.domain.name ---- diff --git a/tests/results/test_examples/00_6domainname_params.gitlab.md b/tests/results/test_examples/00_6domainname_params.gitlab.md index 8fd8fc60f..1429c2ea3 100644 --- a/tests/results/test_examples/00_6domainname_params.gitlab.md +++ b/tests/results/test_examples/00_6domainname_params.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: my.domain.name # A domain name variable +variable: my.domain.name ```
diff --git a/tests/results/test_examples/00_6domainname_params.html b/tests/results/test_examples/00_6domainname_params.html index fae19cbb3..b2a8b0adb 100644 --- a/tests/results/test_examples/00_6domainname_params.html +++ b/tests/results/test_examples/00_6domainname_params.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: my.domain.name      # A domain name variable
\ No newline at end of file +
variable: my.domain.name
\ No newline at end of file diff --git a/tests/results/test_examples/00_6domainname_params.sh b/tests/results/test_examples/00_6domainname_params.sh index 78da443fe..4723446a8 100644 --- a/tests/results/test_examples/00_6domainname_params.sh +++ b/tests/results/test_examples/00_6domainname_params.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: my.domain.name # A domain name variable  +variable: my.domain.name  diff --git a/tests/results/test_examples/00_6float.adoc b/tests/results/test_examples/00_6float.adoc index 43c1bb8cf..624963c73 100644 --- a/tests/results/test_examples/00_6float.adoc +++ b/tests/results/test_examples/00_6float.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -var1: 0.0 # The first variable -var2: 0.0 # The second variable -var3: 0.0 # The third variable -var4: 10.1 # The forth variable -var5: 10.1 # The fifth variable -var6: 10.1 # The sixth variable +var1: 0.0 +var2: 0.0 +var3: 0.0 +var4: 10.1 +var5: 10.1 +var6: 10.1 ---- diff --git a/tests/results/test_examples/00_6float.gitlab.md b/tests/results/test_examples/00_6float.gitlab.md index a3147478b..2ad3a3d81 100644 --- a/tests/results/test_examples/00_6float.gitlab.md +++ b/tests/results/test_examples/00_6float.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -var1: 0.0 # The first variable -var2: 0.0 # The second variable -var3: 0.0 # The third variable -var4: 10.1 # The forth variable -var5: 10.1 # The fifth variable -var6: 10.1 # The sixth variable +var1: 0.0 +var2: 0.0 +var3: 0.0 +var4: 10.1 +var5: 10.1 +var6: 10.1 ```
diff --git a/tests/results/test_examples/00_6float.html b/tests/results/test_examples/00_6float.html index 06092f491..9884220c0 100644 --- a/tests/results/test_examples/00_6float.html +++ b/tests/results/test_examples/00_6float.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
var1: 0.0                     # The first variable
-var2: 0.0                     # The second variable
-var3: 0.0                     # The third variable
-var4: 10.1                    # The forth variable
-var5: 10.1                    # The fifth variable
-var6: 10.1                    # The sixth variable
\ No newline at end of file +
var1: 0.0
+var2: 0.0
+var3: 0.0
+var4: 10.1
+var5: 10.1
+var6: 10.1
\ No newline at end of file diff --git a/tests/results/test_examples/00_6float.sh b/tests/results/test_examples/00_6float.sh index 16a19d57b..4cb83418b 100644 --- a/tests/results/test_examples/00_6float.sh +++ b/tests/results/test_examples/00_6float.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -var1: 0.0 # The first variable  -var2: 0.0 # The second variable  -var3: 0.0 # The third variable  -var4: 10.1 # The forth variable  -var5: 10.1 # The fifth variable  -var6: 10.1 # The sixth variable  +var1: 0.0  +var2: 0.0  +var3: 0.0  +var4: 10.1  +var5: 10.1  +var6: 10.1  diff --git a/tests/results/test_examples/00_6integer.adoc b/tests/results/test_examples/00_6integer.adoc index c7238064d..21448a6c3 100644 --- a/tests/results/test_examples/00_6integer.adoc +++ b/tests/results/test_examples/00_6integer.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -var1: 0 # The first variable -var2: 0 # The second variable -var3: 0 # The third variable -var4: 10 # This forth variable -var5: 10 # The fifth variable -var6: 10 # The sixth variable +var1: 0 +var2: 0 +var3: 0 +var4: 10 +var5: 10 +var6: 10 ---- diff --git a/tests/results/test_examples/00_6integer.gitlab.md b/tests/results/test_examples/00_6integer.gitlab.md index aa1c8f952..31a24de02 100644 --- a/tests/results/test_examples/00_6integer.gitlab.md +++ b/tests/results/test_examples/00_6integer.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -var1: 0 # The first variable -var2: 0 # The second variable -var3: 0 # The third variable -var4: 10 # This forth variable -var5: 10 # The fifth variable -var6: 10 # The sixth variable +var1: 0 +var2: 0 +var3: 0 +var4: 10 +var5: 10 +var6: 10 ```
diff --git a/tests/results/test_examples/00_6integer.html b/tests/results/test_examples/00_6integer.html index 524980f0d..54c25235c 100644 --- a/tests/results/test_examples/00_6integer.html +++ b/tests/results/test_examples/00_6integer.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
var1: 0                       # The first variable
-var2: 0                       # The second variable
-var3: 0                       # The third variable
-var4: 10                      # This forth variable
-var5: 10                      # The fifth variable
-var6: 10                      # The sixth variable
\ No newline at end of file +
var1: 0
+var2: 0
+var3: 0
+var4: 10
+var5: 10
+var6: 10
\ No newline at end of file diff --git a/tests/results/test_examples/00_6integer.sh b/tests/results/test_examples/00_6integer.sh index 55041be9d..8154ee249 100644 --- a/tests/results/test_examples/00_6integer.sh +++ b/tests/results/test_examples/00_6integer.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -var1: 0 # The first variable  -var2: 0 # The second variable  -var3: 0 # The third variable  -var4: 10 # This forth variable  -var5: 10 # The fifth variable  -var6: 10 # The sixth variable  +var1: 0  +var2: 0  +var3: 0  +var4: 10  +var5: 10  +var6: 10  diff --git a/tests/results/test_examples/00_6ip.adoc b/tests/results/test_examples/00_6ip.adoc index 3819bb654..919da59bc 100644 --- a/tests/results/test_examples/00_6ip.adoc +++ b/tests/results/test_examples/00_6ip.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: 1.1.1.1 # An IP -var2: 192.168.0.128/25 # An IP in CIDR format -var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type +var1: 1.1.1.1 +var2: 192.168.0.128/25 +var3: 1.1.1.1/24 ---- diff --git a/tests/results/test_examples/00_6ip.gitlab.md b/tests/results/test_examples/00_6ip.gitlab.md index 334ff852f..e1a33651e 100644 --- a/tests/results/test_examples/00_6ip.gitlab.md +++ b/tests/results/test_examples/00_6ip.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: 1.1.1.1 # An IP -var2: 192.168.0.128/25 # An IP in CIDR format -var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type +var1: 1.1.1.1 +var2: 192.168.0.128/25 +var3: 1.1.1.1/24 ```
diff --git a/tests/results/test_examples/00_6ip.html b/tests/results/test_examples/00_6ip.html index 90fc6145c..ad8601c68 100644 --- a/tests/results/test_examples/00_6ip.html +++ b/tests/results/test_examples/00_6ip.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1: 1.1.1.1                 # An IP
-var2: 192.168.0.128/25        # An IP in CIDR format
-var3: 1.1.1.1/24              # An IP in CIDR format with obsolete CIDR type
\ No newline at end of file +
var1: 1.1.1.1
+var2: 192.168.0.128/25
+var3: 1.1.1.1/24
\ No newline at end of file diff --git a/tests/results/test_examples/00_6ip.sh b/tests/results/test_examples/00_6ip.sh index dbe69929d..295eb3953 100644 --- a/tests/results/test_examples/00_6ip.sh +++ b/tests/results/test_examples/00_6ip.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: 1.1.1.1 # An IP  -var2: 192.168.0.128/25 # An IP in CIDR format  -var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type  +var1: 1.1.1.1  +var2: 192.168.0.128/25  +var3: 1.1.1.1/24  diff --git a/tests/results/test_examples/00_6network.adoc b/tests/results/test_examples/00_6network.adoc index e8287310e..21074bc64 100644 --- a/tests/results/test_examples/00_6network.adoc +++ b/tests/results/test_examples/00_6network.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: 1.1.1.0 # An network -var2: 1.1.1.0/24 # An network in CIDR format -var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR type +var1: 1.1.1.0 +var2: 1.1.1.0/24 +var3: 1.1.1.0/24 ---- diff --git a/tests/results/test_examples/00_6network.gitlab.md b/tests/results/test_examples/00_6network.gitlab.md index 209a28cf8..864ad3f1a 100644 --- a/tests/results/test_examples/00_6network.gitlab.md +++ b/tests/results/test_examples/00_6network.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: 1.1.1.0 # An network -var2: 1.1.1.0/24 # An network in CIDR format -var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR type +var1: 1.1.1.0 +var2: 1.1.1.0/24 +var3: 1.1.1.0/24 ```
diff --git a/tests/results/test_examples/00_6network.html b/tests/results/test_examples/00_6network.html index c75072c64..cc321c909 100644 --- a/tests/results/test_examples/00_6network.html +++ b/tests/results/test_examples/00_6network.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1: 1.1.1.0                 # An network
-var2: 1.1.1.0/24              # An network in CIDR format
-var3: 1.1.1.0/24              # An network in CIDR format with obsolete CIDR type
\ No newline at end of file +
var1: 1.1.1.0
+var2: 1.1.1.0/24
+var3: 1.1.1.0/24
\ No newline at end of file diff --git a/tests/results/test_examples/00_6network.sh b/tests/results/test_examples/00_6network.sh index ea3f9cd8a..1fe5d256b 100644 --- a/tests/results/test_examples/00_6network.sh +++ b/tests/results/test_examples/00_6network.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: 1.1.1.0 # An network  -var2: 1.1.1.0/24 # An network in CIDR format  -var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR typ +var1: 1.1.1.0  +var2: 1.1.1.0/24  +var3: 1.1.1.0/24  diff --git a/tests/results/test_examples/00_6number.adoc b/tests/results/test_examples/00_6number.adoc index c7238064d..21448a6c3 100644 --- a/tests/results/test_examples/00_6number.adoc +++ b/tests/results/test_examples/00_6number.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -var1: 0 # The first variable -var2: 0 # The second variable -var3: 0 # The third variable -var4: 10 # This forth variable -var5: 10 # The fifth variable -var6: 10 # The sixth variable +var1: 0 +var2: 0 +var3: 0 +var4: 10 +var5: 10 +var6: 10 ---- diff --git a/tests/results/test_examples/00_6number.gitlab.md b/tests/results/test_examples/00_6number.gitlab.md index aa1c8f952..31a24de02 100644 --- a/tests/results/test_examples/00_6number.gitlab.md +++ b/tests/results/test_examples/00_6number.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -var1: 0 # The first variable -var2: 0 # The second variable -var3: 0 # The third variable -var4: 10 # This forth variable -var5: 10 # The fifth variable -var6: 10 # The sixth variable +var1: 0 +var2: 0 +var3: 0 +var4: 10 +var5: 10 +var6: 10 ```
diff --git a/tests/results/test_examples/00_6number.html b/tests/results/test_examples/00_6number.html index 524980f0d..54c25235c 100644 --- a/tests/results/test_examples/00_6number.html +++ b/tests/results/test_examples/00_6number.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
var1: 0                       # The first variable
-var2: 0                       # The second variable
-var3: 0                       # The third variable
-var4: 10                      # This forth variable
-var5: 10                      # The fifth variable
-var6: 10                      # The sixth variable
\ No newline at end of file +
var1: 0
+var2: 0
+var3: 0
+var4: 10
+var5: 10
+var6: 10
\ No newline at end of file diff --git a/tests/results/test_examples/00_6number.sh b/tests/results/test_examples/00_6number.sh index 55041be9d..8154ee249 100644 --- a/tests/results/test_examples/00_6number.sh +++ b/tests/results/test_examples/00_6number.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -var1: 0 # The first variable  -var2: 0 # The second variable  -var3: 0 # The third variable  -var4: 10 # This forth variable  -var5: 10 # The fifth variable  -var6: 10 # The sixth variable  +var1: 0  +var2: 0  +var3: 0  +var4: 10  +var5: 10  +var6: 10  diff --git a/tests/results/test_examples/00_6port.adoc b/tests/results/test_examples/00_6port.adoc index 3b12e61ea..e2a50c07b 100644 --- a/tests/results/test_examples/00_6port.adoc +++ b/tests/results/test_examples/00_6port.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -variable1: '111' # A port variable +variable1: '111' ---- == Example with all variables modifiable [,yaml] ---- --- -variable1: '111' # A port variable -variable2: '8080' # A port variable with default value -variable3: '8080' # A port variable with integer default value +variable1: '111' +variable2: '8080' +variable3: '8080' ---- diff --git a/tests/results/test_examples/00_6port.gitlab.md b/tests/results/test_examples/00_6port.gitlab.md index 21f3849d5..5ad3fb9ff 100644 --- a/tests/results/test_examples/00_6port.gitlab.md +++ b/tests/results/test_examples/00_6port.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable1: '111' # A port variable +variable1: '111' ```
@@ -10,9 +10,9 @@ variable1: '111' # A port variable ```yaml --- -variable1: '111' # A port variable -variable2: '8080' # A port variable with default value -variable3: '8080' # A port variable with integer default value +variable1: '111' +variable2: '8080' +variable3: '8080' ```
diff --git a/tests/results/test_examples/00_6port.html b/tests/results/test_examples/00_6port.html index d52b719c6..5f6d28211 100644 --- a/tests/results/test_examples/00_6port.html +++ b/tests/results/test_examples/00_6port.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
variable1: '111'              # A port variable

Example with all variables modifiable

+
variable1: '111'

Example with all variables modifiable

-
variable1: '111'              # A port variable
-variable2: '8080'             # A port variable with default value
-variable3: '8080'             # A port variable with integer default value
\ No newline at end of file +
variable1: '111'
+variable2: '8080'
+variable3: '8080'
\ No newline at end of file diff --git a/tests/results/test_examples/00_6port.sh b/tests/results/test_examples/00_6port.sh index 6be1c3ac0..dcd13c974 100644 --- a/tests/results/test_examples/00_6port.sh +++ b/tests/results/test_examples/00_6port.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -variable1: '111' # A port variable  - - +variable1: '111'  Example with all variables modifiable - ---  -variable1: '111' # A port variable  -variable2: '8080' # A port variable with default value  -variable3: '8080' # A port variable with integer default value  +variable1: '111'  +variable2: '8080'  +variable3: '8080'  diff --git a/tests/results/test_examples/00_6regexp.adoc b/tests/results/test_examples/00_6regexp.adoc index 27c6a5714..ae0b4b759 100644 --- a/tests/results/test_examples/00_6regexp.adoc +++ b/tests/results/test_examples/00_6regexp.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: '#b1b1b1' # A first variable +var: '#b1b1b1' ---- diff --git a/tests/results/test_examples/00_6regexp.gitlab.md b/tests/results/test_examples/00_6regexp.gitlab.md index 7e23f97d6..1c2679947 100644 --- a/tests/results/test_examples/00_6regexp.gitlab.md +++ b/tests/results/test_examples/00_6regexp.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: '#b1b1b1' # A first variable +var: '#b1b1b1' ```
diff --git a/tests/results/test_examples/00_6regexp.html b/tests/results/test_examples/00_6regexp.html index cc6552ed1..75e9f3aa2 100644 --- a/tests/results/test_examples/00_6regexp.html +++ b/tests/results/test_examples/00_6regexp.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: '#b1b1b1'                # A first variable
\ No newline at end of file +
var: '#b1b1b1'
\ No newline at end of file diff --git a/tests/results/test_examples/00_6regexp.sh b/tests/results/test_examples/00_6regexp.sh index 5a221b855..e0353ea4f 100644 --- a/tests/results/test_examples/00_6regexp.sh +++ b/tests/results/test_examples/00_6regexp.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: '#b1b1b1' # A first variable  +var: '#b1b1b1'  diff --git a/tests/results/test_examples/00_6regexp_link.adoc b/tests/results/test_examples/00_6regexp_link.adoc index 5bf0e538f..ab896dc7d 100644 --- a/tests/results/test_examples/00_6regexp_link.adoc +++ b/tests/results/test_examples/00_6regexp_link.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: '#b1b1b1' # A first variable -var2: '#b2b1b1' # A second variable +var1: '#b1b1b1' +var2: '#b2b1b1' ---- diff --git a/tests/results/test_examples/00_6regexp_link.gitlab.md b/tests/results/test_examples/00_6regexp_link.gitlab.md index 0478a5984..9bc6ce1d9 100644 --- a/tests/results/test_examples/00_6regexp_link.gitlab.md +++ b/tests/results/test_examples/00_6regexp_link.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: '#b1b1b1' # A first variable -var2: '#b2b1b1' # A second variable +var1: '#b1b1b1' +var2: '#b2b1b1' ```
diff --git a/tests/results/test_examples/00_6regexp_link.html b/tests/results/test_examples/00_6regexp_link.html index 5ca728ee3..df08117c3 100644 --- a/tests/results/test_examples/00_6regexp_link.html +++ b/tests/results/test_examples/00_6regexp_link.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: '#b1b1b1'               # A first variable
-var2: '#b2b1b1'               # A second variable
\ No newline at end of file +
var1: '#b1b1b1'
+var2: '#b2b1b1'
\ No newline at end of file diff --git a/tests/results/test_examples/00_6regexp_link.sh b/tests/results/test_examples/00_6regexp_link.sh index 8bda194b9..94cb691a4 100644 --- a/tests/results/test_examples/00_6regexp_link.sh +++ b/tests/results/test_examples/00_6regexp_link.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: '#b1b1b1' # A first variable  -var2: '#b2b1b1' # A second variable  +var1: '#b1b1b1'  +var2: '#b2b1b1'  diff --git a/tests/results/test_examples/00_6secret.adoc b/tests/results/test_examples/00_6secret.adoc index 30d30f1c1..bac3407bd 100644 --- a/tests/results/test_examples/00_6secret.adoc +++ b/tests/results/test_examples/00_6secret.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -secret1: secrets # The first variable +secret1: secrets ---- == Example with all variables modifiable [,yaml] ---- --- -secret1: secrets # The first variable -secret2: value # The second variable +secret1: secrets +secret2: value ---- diff --git a/tests/results/test_examples/00_6secret.gitlab.md b/tests/results/test_examples/00_6secret.gitlab.md index ad4b13ea1..2be66e29a 100644 --- a/tests/results/test_examples/00_6secret.gitlab.md +++ b/tests/results/test_examples/00_6secret.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -secret1: secrets # The first variable +secret1: secrets ```
@@ -10,8 +10,8 @@ secret1: secrets # The first variable ```yaml --- -secret1: secrets # The first variable -secret2: value # The second variable +secret1: secrets +secret2: value ```
diff --git a/tests/results/test_examples/00_6secret.html b/tests/results/test_examples/00_6secret.html index d73e449a0..bf20c3586 100644 --- a/tests/results/test_examples/00_6secret.html +++ b/tests/results/test_examples/00_6secret.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
secret1: secrets              # The first variable

Example with all variables modifiable

+
secret1: secrets

Example with all variables modifiable

-
secret1: secrets              # The first variable
-secret2: value                # The second variable
\ No newline at end of file +
secret1: secrets
+secret2: value
\ No newline at end of file diff --git a/tests/results/test_examples/00_6secret.sh b/tests/results/test_examples/00_6secret.sh index 53f396774..0b5d3ce65 100644 --- a/tests/results/test_examples/00_6secret.sh +++ b/tests/results/test_examples/00_6secret.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -secret1: secrets # The first variable  - - +secret1: secrets  Example with all variables modifiable - ---  -secret1: secrets # The first variable  -secret2: value # The second variable  +secret1: secrets  +secret2: value  diff --git a/tests/results/test_examples/00_6secret_param.adoc b/tests/results/test_examples/00_6secret_param.adoc index cb7c7d900..f33334935 100644 --- a/tests/results/test_examples/00_6secret_param.adoc +++ b/tests/results/test_examples/00_6secret_param.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -secret1: secrets # The first variable +secret1: secrets ---- == Example with all variables modifiable [,yaml] ---- --- -secret1: secrets # The first variable -secret2: value # The second variable -secret3: value # The third variable +secret1: secrets +secret2: value +secret3: value ---- diff --git a/tests/results/test_examples/00_6secret_param.gitlab.md b/tests/results/test_examples/00_6secret_param.gitlab.md index 305f7ec4c..9a46dbb9a 100644 --- a/tests/results/test_examples/00_6secret_param.gitlab.md +++ b/tests/results/test_examples/00_6secret_param.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -secret1: secrets # The first variable +secret1: secrets ```
@@ -10,9 +10,9 @@ secret1: secrets # The first variable ```yaml --- -secret1: secrets # The first variable -secret2: value # The second variable -secret3: value # The third variable +secret1: secrets +secret2: value +secret3: value ```
diff --git a/tests/results/test_examples/00_6secret_param.html b/tests/results/test_examples/00_6secret_param.html index d671cbc9e..b821d799a 100644 --- a/tests/results/test_examples/00_6secret_param.html +++ b/tests/results/test_examples/00_6secret_param.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
secret1: secrets              # The first variable

Example with all variables modifiable

+
secret1: secrets

Example with all variables modifiable

-
secret1: secrets              # The first variable
-secret2: value                # The second variable
-secret3: value                # The third variable
\ No newline at end of file +
secret1: secrets
+secret2: value
+secret3: value
\ No newline at end of file diff --git a/tests/results/test_examples/00_6secret_param.sh b/tests/results/test_examples/00_6secret_param.sh index d59284056..4aa831c10 100644 --- a/tests/results/test_examples/00_6secret_param.sh +++ b/tests/results/test_examples/00_6secret_param.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -secret1: secrets # The first variable  - - +secret1: secrets  Example with all variables modifiable - ---  -secret1: secrets # The first variable  -secret2: value # The second variable  -secret3: value # The third variable  +secret1: secrets  +secret2: value  +secret3: value  diff --git a/tests/results/test_examples/00_6string.adoc b/tests/results/test_examples/00_6string.adoc index 0f13b5cd3..a7c060c53 100644 --- a/tests/results/test_examples/00_6string.adoc +++ b/tests/results/test_examples/00_6string.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable -var3: example # The third variable +var1: example +var2: example +var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable -var3: example # The third variable -var4: value # The forth variable -var5: value # The fifth variable -var6: value # The sixth variable -var7: '8080' # The seventh variable -var8: 'true' # The height variable +var1: example +var2: example +var3: example +var4: value +var5: value +var6: value +var7: '8080' +var8: 'true' ---- diff --git a/tests/results/test_examples/00_6string.gitlab.md b/tests/results/test_examples/00_6string.gitlab.md index b47411a5c..4b12aa61d 100644 --- a/tests/results/test_examples/00_6string.gitlab.md +++ b/tests/results/test_examples/00_6string.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: example # The first variable -var2: example # The second variable -var3: example # The third variable +var1: example +var2: example +var3: example ```
@@ -12,14 +12,14 @@ var3: example # The third variable ```yaml --- -var1: example # The first variable -var2: example # The second variable -var3: example # The third variable -var4: value # The forth variable -var5: value # The fifth variable -var6: value # The sixth variable -var7: '8080' # The seventh variable -var8: 'true' # The height variable +var1: example +var2: example +var3: example +var4: value +var5: value +var6: value +var7: '8080' +var8: 'true' ```
diff --git a/tests/results/test_examples/00_6string.html b/tests/results/test_examples/00_6string.html index 6a5bba466..ce3569094 100644 --- a/tests/results/test_examples/00_6string.html +++ b/tests/results/test_examples/00_6string.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
var1: example                 # The first variable
-var2: example                 # The second variable
-var3: example                 # The third variable

Example with all variables modifiable

+
var1: example
+var2: example
+var3: example

Example with all variables modifiable

-
var1: example                 # The first variable
-var2: example                 # The second variable
-var3: example                 # The third variable
-var4: value                   # The forth variable
-var5: value                   # The fifth variable
-var6: value                   # The sixth variable
-var7: '8080'                  # The seventh variable
-var8: 'true'                  # The height variable
\ No newline at end of file +
var1: example
+var2: example
+var3: example
+var4: value
+var5: value
+var6: value
+var7: '8080'
+var8: 'true'
\ No newline at end of file diff --git a/tests/results/test_examples/00_6string.sh b/tests/results/test_examples/00_6string.sh index ec7c9ffe2..791a42ce5 100644 --- a/tests/results/test_examples/00_6string.sh +++ b/tests/results/test_examples/00_6string.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -var1: example # The first variable  -var2: example # The second variable  -var3: example # The third variable  - - +var1: example  +var2: example  +var3: example  Example with all variables modifiable - ---  -var1: example # The first variable  -var2: example # The second variable  -var3: example # The third variable  -var4: value # The forth variable  -var5: value # The fifth variable  -var6: value # The sixth variable  -var7: '8080' # The seventh variable  -var8: 'true' # The height variable  +var1: example  +var2: example  +var3: example  +var4: value  +var5: value  +var6: value  +var7: '8080'  +var8: 'true'  diff --git a/tests/results/test_examples/00_7choice_quote.adoc b/tests/results/test_examples/00_7choice_quote.adoc index 96b55880d..cbbb88928 100644 --- a/tests/results/test_examples/00_7choice_quote.adoc +++ b/tests/results/test_examples/00_7choice_quote.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: quote' # A choice +var: quote' ---- diff --git a/tests/results/test_examples/00_7choice_quote.gitlab.md b/tests/results/test_examples/00_7choice_quote.gitlab.md index 420a2d030..4d97fe225 100644 --- a/tests/results/test_examples/00_7choice_quote.gitlab.md +++ b/tests/results/test_examples/00_7choice_quote.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: quote' # A choice +var: quote' ```
diff --git a/tests/results/test_examples/00_7choice_quote.html b/tests/results/test_examples/00_7choice_quote.html index 6ac9767d8..bb9598c48 100644 --- a/tests/results/test_examples/00_7choice_quote.html +++ b/tests/results/test_examples/00_7choice_quote.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: quote'                   # A choice
\ No newline at end of file +
var: quote'
\ No newline at end of file diff --git a/tests/results/test_examples/00_7choice_quote.sh b/tests/results/test_examples/00_7choice_quote.sh index 857195a4d..464716a71 100644 --- a/tests/results/test_examples/00_7choice_quote.sh +++ b/tests/results/test_examples/00_7choice_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: quote' # A choice  +var: quote'  diff --git a/tests/results/test_examples/00_7help.adoc b/tests/results/test_examples/00_7help.adoc index 13a775a56..e6a432e62 100644 --- a/tests/results/test_examples/00_7help.adoc +++ b/tests/results/test_examples/00_7help.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_7help.gitlab.md b/tests/results/test_examples/00_7help.gitlab.md index 3437b3568..c07364179 100644 --- a/tests/results/test_examples/00_7help.gitlab.md +++ b/tests/results/test_examples/00_7help.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
@@ -11,8 +11,8 @@ var2: example # The second variable ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_7help.html b/tests/results/test_examples/00_7help.html index 7425ab7b2..0bf2e0214 100644 --- a/tests/results/test_examples/00_7help.html +++ b/tests/results/test_examples/00_7help.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var1: example                 # The first variable
-var2: example                 # The second variable

Example with all variables modifiable

+
var1: example
+var2: example

Example with all variables modifiable

-
var1: example                 # The first variable
-var2: example                 # The second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_7help.sh b/tests/results/test_examples/00_7help.sh index 120b8ee89..0381b6ceb 100644 --- a/tests/results/test_examples/00_7help.sh +++ b/tests/results/test_examples/00_7help.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var1: example # The first variable  -var2: example # The second variable  - - +var1: example  +var2: example  Example with all variables modifiable - ---  -var1: example # The first variable  -var2: example # The second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_7help_quote.adoc b/tests/results/test_examples/00_7help_quote.adoc index 13a775a56..e6a432e62 100644 --- a/tests/results/test_examples/00_7help_quote.adoc +++ b/tests/results/test_examples/00_7help_quote.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_7help_quote.gitlab.md b/tests/results/test_examples/00_7help_quote.gitlab.md index 3437b3568..c07364179 100644 --- a/tests/results/test_examples/00_7help_quote.gitlab.md +++ b/tests/results/test_examples/00_7help_quote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
@@ -11,8 +11,8 @@ var2: example # The second variable ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_7help_quote.html b/tests/results/test_examples/00_7help_quote.html index 7425ab7b2..0bf2e0214 100644 --- a/tests/results/test_examples/00_7help_quote.html +++ b/tests/results/test_examples/00_7help_quote.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var1: example                 # The first variable
-var2: example                 # The second variable

Example with all variables modifiable

+
var1: example
+var2: example

Example with all variables modifiable

-
var1: example                 # The first variable
-var2: example                 # The second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_7help_quote.sh b/tests/results/test_examples/00_7help_quote.sh index 120b8ee89..0381b6ceb 100644 --- a/tests/results/test_examples/00_7help_quote.sh +++ b/tests/results/test_examples/00_7help_quote.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var1: example # The first variable  -var2: example # The second variable  - - +var1: example  +var2: example  Example with all variables modifiable - ---  -var1: example # The first variable  -var2: example # The second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_7help_sup.adoc b/tests/results/test_examples/00_7help_sup.adoc index 75e1ce25b..e6a432e62 100644 --- a/tests/results/test_examples/00_7help_sup.adoc +++ b/tests/results/test_examples/00_7help_sup.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var1: example # The first -var2: example # The second +var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # The first -var2: example # The second +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_7help_sup.gitlab.md b/tests/results/test_examples/00_7help_sup.gitlab.md index 73a026095..c07364179 100644 --- a/tests/results/test_examples/00_7help_sup.gitlab.md +++ b/tests/results/test_examples/00_7help_sup.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # The first -var2: example # The second +var1: example +var2: example ```
@@ -11,8 +11,8 @@ var2: example # The second ```yaml --- -var1: example # The first -var2: example # The second +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_7help_sup.html b/tests/results/test_examples/00_7help_sup.html index 4f81a02d6..0bf2e0214 100644 --- a/tests/results/test_examples/00_7help_sup.html +++ b/tests/results/test_examples/00_7help_sup.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var1: example                 # The first 
-var2: example                 # The second 

Example with all variables modifiable

+
var1: example
+var2: example

Example with all variables modifiable

-
var1: example                 # The first 
-var2: example                 # The second 
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_7help_sup.sh b/tests/results/test_examples/00_7help_sup.sh index 0b690cdc3..0381b6ceb 100644 --- a/tests/results/test_examples/00_7help_sup.sh +++ b/tests/results/test_examples/00_7help_sup.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var1: example # The first   -var2: example # The second   - - +var1: example  +var2: example  Example with all variables modifiable - ---  -var1: example # The first   -var2: example # The second   +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_7value_doublequote.adoc b/tests/results/test_examples/00_7value_doublequote.adoc index f08571999..46919ac32 100644 --- a/tests/results/test_examples/00_7value_doublequote.adoc +++ b/tests/results/test_examples/00_7value_doublequote.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: quote" # A variable +variable: quote" ---- diff --git a/tests/results/test_examples/00_7value_doublequote.gitlab.md b/tests/results/test_examples/00_7value_doublequote.gitlab.md index d0025dc12..315642a07 100644 --- a/tests/results/test_examples/00_7value_doublequote.gitlab.md +++ b/tests/results/test_examples/00_7value_doublequote.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: quote" # A variable +variable: quote" ```
diff --git a/tests/results/test_examples/00_7value_doublequote.html b/tests/results/test_examples/00_7value_doublequote.html index 4e708d6fe..9da980c2f 100644 --- a/tests/results/test_examples/00_7value_doublequote.html +++ b/tests/results/test_examples/00_7value_doublequote.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: quote"              # A variable
\ No newline at end of file +
variable: quote"
\ No newline at end of file diff --git a/tests/results/test_examples/00_7value_doublequote.sh b/tests/results/test_examples/00_7value_doublequote.sh index 72941a060..64db6fd5f 100644 --- a/tests/results/test_examples/00_7value_doublequote.sh +++ b/tests/results/test_examples/00_7value_doublequote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: quote" # A variable  +variable: quote"  diff --git a/tests/results/test_examples/00_7value_doublequote2.adoc b/tests/results/test_examples/00_7value_doublequote2.adoc index f5ba1bf32..db260f687 100644 --- a/tests/results/test_examples/00_7value_doublequote2.adoc +++ b/tests/results/test_examples/00_7value_doublequote2.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: quote'" # A variable +variable: quote'" ---- diff --git a/tests/results/test_examples/00_7value_doublequote2.gitlab.md b/tests/results/test_examples/00_7value_doublequote2.gitlab.md index 979d1674e..59e2f4abb 100644 --- a/tests/results/test_examples/00_7value_doublequote2.gitlab.md +++ b/tests/results/test_examples/00_7value_doublequote2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: quote'" # A variable +variable: quote'" ```
diff --git a/tests/results/test_examples/00_7value_doublequote2.html b/tests/results/test_examples/00_7value_doublequote2.html index fc6ca09f6..4081c2764 100644 --- a/tests/results/test_examples/00_7value_doublequote2.html +++ b/tests/results/test_examples/00_7value_doublequote2.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: quote'"             # A variable
\ No newline at end of file +
variable: quote'"
\ No newline at end of file diff --git a/tests/results/test_examples/00_7value_doublequote2.sh b/tests/results/test_examples/00_7value_doublequote2.sh index 6a5f5e47a..24c8d5794 100644 --- a/tests/results/test_examples/00_7value_doublequote2.sh +++ b/tests/results/test_examples/00_7value_doublequote2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: quote'" # A variable  +variable: quote'"  diff --git a/tests/results/test_examples/00_7value_doublequote3.adoc b/tests/results/test_examples/00_7value_doublequote3.adoc index 1e9d56236..ef3794956 100644 --- a/tests/results/test_examples/00_7value_doublequote3.adoc +++ b/tests/results/test_examples/00_7value_doublequote3.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: quote\"\' # A variable +variable: quote\"\' ---- diff --git a/tests/results/test_examples/00_7value_doublequote3.gitlab.md b/tests/results/test_examples/00_7value_doublequote3.gitlab.md index 6e370ee9c..a8fdefda9 100644 --- a/tests/results/test_examples/00_7value_doublequote3.gitlab.md +++ b/tests/results/test_examples/00_7value_doublequote3.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: quote\"\' # A variable +variable: quote\"\' ```
diff --git a/tests/results/test_examples/00_7value_doublequote3.html b/tests/results/test_examples/00_7value_doublequote3.html index 3b4ad5b54..527e6fd1a 100644 --- a/tests/results/test_examples/00_7value_doublequote3.html +++ b/tests/results/test_examples/00_7value_doublequote3.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: quote\"\'           # A variable
\ No newline at end of file +
variable: quote\"\'
\ No newline at end of file diff --git a/tests/results/test_examples/00_7value_doublequote3.sh b/tests/results/test_examples/00_7value_doublequote3.sh index 9c7df83c1..1bca61485 100644 --- a/tests/results/test_examples/00_7value_doublequote3.sh +++ b/tests/results/test_examples/00_7value_doublequote3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: quote\"\' # A variable  +variable: quote\"\'  diff --git a/tests/results/test_examples/00_7value_quote.adoc b/tests/results/test_examples/00_7value_quote.adoc index c8bd81545..f4dfaff45 100644 --- a/tests/results/test_examples/00_7value_quote.adoc +++ b/tests/results/test_examples/00_7value_quote.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: quote' # A variable +variable: quote' ---- diff --git a/tests/results/test_examples/00_7value_quote.gitlab.md b/tests/results/test_examples/00_7value_quote.gitlab.md index 055c7a09e..d803379a1 100644 --- a/tests/results/test_examples/00_7value_quote.gitlab.md +++ b/tests/results/test_examples/00_7value_quote.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: quote' # A variable +variable: quote' ```
diff --git a/tests/results/test_examples/00_7value_quote.html b/tests/results/test_examples/00_7value_quote.html index 078e6fd6c..dfb50e69f 100644 --- a/tests/results/test_examples/00_7value_quote.html +++ b/tests/results/test_examples/00_7value_quote.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: quote'              # A variable
\ No newline at end of file +
variable: quote'
\ No newline at end of file diff --git a/tests/results/test_examples/00_7value_quote.sh b/tests/results/test_examples/00_7value_quote.sh index 5dc7baa13..92fa4d5ef 100644 --- a/tests/results/test_examples/00_7value_quote.sh +++ b/tests/results/test_examples/00_7value_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: quote' # A variable  +variable: quote'  diff --git a/tests/results/test_examples/00_8calculation_information.adoc b/tests/results/test_examples/00_8calculation_information.adoc index 12771c356..dce98276e 100644 --- a/tests/results/test_examples/00_8calculation_information.adoc +++ b/tests/results/test_examples/00_8calculation_information.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- diff --git a/tests/results/test_examples/00_8calculation_information.gitlab.md b/tests/results/test_examples/00_8calculation_information.gitlab.md index 7a2c9e86f..8eb39eed9 100644 --- a/tests/results/test_examples/00_8calculation_information.gitlab.md +++ b/tests/results/test_examples/00_8calculation_information.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ```
diff --git a/tests/results/test_examples/00_8calculation_information.html b/tests/results/test_examples/00_8calculation_information.html index 96cc6429c..7baa59dea 100644 --- a/tests/results/test_examples/00_8calculation_information.html +++ b/tests/results/test_examples/00_8calculation_information.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: example             # A variable
\ No newline at end of file +
variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_8calculation_information.sh b/tests/results/test_examples/00_8calculation_information.sh index d9bdb2497..b1345ce1f 100644 --- a/tests/results/test_examples/00_8calculation_information.sh +++ b/tests/results/test_examples/00_8calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: example # A variable  +variable: example  diff --git a/tests/results/test_examples/00_8test.adoc b/tests/results/test_examples/00_8test.adoc index dcd2e0a06..2db0c8fc0 100644 --- a/tests/results/test_examples/00_8test.adoc +++ b/tests/results/test_examples/00_8test.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -var1: test # The first variable -var3: test1 # The third variable -var6: # The sixth variable +var1: test +var3: test1 +var6: - test1 - test2 ---- @@ -14,12 +14,12 @@ var6: # The sixth variable [,yaml] ---- --- -var1: test # The first variable -var2: test # The second variable -var3: test1 # The third variable -var4: # The forth variable -var5: false # The fifth variable -var6: # The sixth variable +var1: test +var2: test +var3: test1 +var4: +var5: false +var6: - test1 - test2 ---- diff --git a/tests/results/test_examples/00_8test.gitlab.md b/tests/results/test_examples/00_8test.gitlab.md index ee3f59a6a..5e73e6ebc 100644 --- a/tests/results/test_examples/00_8test.gitlab.md +++ b/tests/results/test_examples/00_8test.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: test # The first variable -var3: test1 # The third variable -var6: # The sixth variable +var1: test +var3: test1 +var6: - test1 - test2 ``` @@ -14,12 +14,12 @@ var6: # The sixth variable ```yaml --- -var1: test # The first variable -var2: test # The second variable -var3: test1 # The third variable -var4: # The forth variable -var5: false # The fifth variable -var6: # The sixth variable +var1: test +var2: test +var3: test1 +var4: +var5: false +var6: - test1 - test2 ``` diff --git a/tests/results/test_examples/00_8test.html b/tests/results/test_examples/00_8test.html index 413b017e6..defa0b701 100644 --- a/tests/results/test_examples/00_8test.html +++ b/tests/results/test_examples/00_8test.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
var1: test                    # The first variable
-var3: test1                   # The third variable
-var6:                         # The sixth variable
+
var1: test
+var3: test1
+var6:
   - test1
   - test2

Example with all variables modifiable

-
var1: test                    # The first variable
-var2: test                    # The second variable
-var3: test1                   # The third variable
-var4:                         # The forth variable
-var5: false                   # The fifth variable
-var6:                         # The sixth variable
+
var1: test
+var2: test
+var3: test1
+var4:
+var5: false
+var6:
   - test1
   - test2
\ No newline at end of file diff --git a/tests/results/test_examples/00_8test.sh b/tests/results/test_examples/00_8test.sh index 2e7291c1c..320e145d2 100644 --- a/tests/results/test_examples/00_8test.sh +++ b/tests/results/test_examples/00_8test.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -var1: test # The first variable  -var3: test1 # The third variable  -var6: # The sixth variable  +var1: test  +var3: test1  +var6:   - test1   - test2  - - Example with all variables modifiable - ---  -var1: test # The first variable  -var2: test # The second variable  -var3: test1 # The third variable  -var4: # The forth variable  -var5: false # The fifth variable  -var6: # The sixth variable  +var1: test  +var2: test  +var3: test1  +var4:  +var5: false  +var6:   - test1   - test2  diff --git a/tests/results/test_examples/00_9choice_variable_multi.adoc b/tests/results/test_examples/00_9choice_variable_multi.adoc index 90ff27143..534273f16 100644 --- a/tests/results/test_examples/00_9choice_variable_multi.adoc +++ b/tests/results/test_examples/00_9choice_variable_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -variable1: # A first variable +variable1: - a_choice ---- == Example with all variables modifiable @@ -11,8 +11,8 @@ variable1: # A first variable [,yaml] ---- --- -variable1: # A first variable +variable1: - a_choice -variable2: # A second variable +variable2: - a_choice ---- diff --git a/tests/results/test_examples/00_9choice_variable_multi.gitlab.md b/tests/results/test_examples/00_9choice_variable_multi.gitlab.md index 83519a60b..5c20ad8f2 100644 --- a/tests/results/test_examples/00_9choice_variable_multi.gitlab.md +++ b/tests/results/test_examples/00_9choice_variable_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable1: # A first variable +variable1: - a_choice ```
@@ -11,9 +11,9 @@ variable1: # A first variable ```yaml --- -variable1: # A first variable +variable1: - a_choice -variable2: # A second variable +variable2: - a_choice ```
diff --git a/tests/results/test_examples/00_9choice_variable_multi.html b/tests/results/test_examples/00_9choice_variable_multi.html index 4d5f98911..8fc6006ca 100644 --- a/tests/results/test_examples/00_9choice_variable_multi.html +++ b/tests/results/test_examples/00_9choice_variable_multi.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
variable1:                    # A first variable
+
variable1:
   - a_choice

Example with all variables modifiable

-
variable1:                    # A first variable
+
variable1:
   - a_choice
-variable2:                    # A second variable
+variable2:
   - a_choice
\ No newline at end of file diff --git a/tests/results/test_examples/00_9choice_variable_multi.sh b/tests/results/test_examples/00_9choice_variable_multi.sh index a49fd66fe..28c38d31f 100644 --- a/tests/results/test_examples/00_9choice_variable_multi.sh +++ b/tests/results/test_examples/00_9choice_variable_multi.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -variable1: # A first variable  +variable1:   - a_choice  - - Example with all variables modifiable - ---  -variable1: # A first variable  +variable1:   - a_choice  -variable2: # A second variable  +variable2:   - a_choice  diff --git a/tests/results/test_examples/00_9choice_variables.adoc b/tests/results/test_examples/00_9choice_variables.adoc index b726d7c52..bc7576eb0 100644 --- a/tests/results/test_examples/00_9choice_variables.adoc +++ b/tests/results/test_examples/00_9choice_variables.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -source_variable_1: val1 # The first source variable -source_variable_2: val2 # The second source variable -my_variable: val1 # A variable +source_variable_1: val1 +source_variable_2: val2 +my_variable: val1 ---- diff --git a/tests/results/test_examples/00_9choice_variables.gitlab.md b/tests/results/test_examples/00_9choice_variables.gitlab.md index fc3efbacb..6b36c9914 100644 --- a/tests/results/test_examples/00_9choice_variables.gitlab.md +++ b/tests/results/test_examples/00_9choice_variables.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -source_variable_1: val1 # The first source variable -source_variable_2: val2 # The second source variable -my_variable: val1 # A variable +source_variable_1: val1 +source_variable_2: val2 +my_variable: val1 ```
diff --git a/tests/results/test_examples/00_9choice_variables.html b/tests/results/test_examples/00_9choice_variables.html index dcb8fe878..96a3cd785 100644 --- a/tests/results/test_examples/00_9choice_variables.html +++ b/tests/results/test_examples/00_9choice_variables.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
source_variable_1: val1       # The first source variable
-source_variable_2: val2       # The second source variable
-my_variable: val1             # A variable
\ No newline at end of file +
source_variable_1: val1
+source_variable_2: val2
+my_variable: val1
\ No newline at end of file diff --git a/tests/results/test_examples/00_9choice_variables.sh b/tests/results/test_examples/00_9choice_variables.sh index 3e9a23f48..9692dcc38 100644 --- a/tests/results/test_examples/00_9choice_variables.sh +++ b/tests/results/test_examples/00_9choice_variables.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -source_variable_1: val1 # The first source variable  -source_variable_2: val2 # The second source variable  -my_variable: val1 # A variable  +source_variable_1: val1  +source_variable_2: val2  +my_variable: val1  diff --git a/tests/results/test_examples/00_9default_calculation.adoc b/tests/results/test_examples/00_9default_calculation.adoc index e7bb90b96..26af6843b 100644 --- a/tests/results/test_examples/00_9default_calculation.adoc +++ b/tests/results/test_examples/00_9default_calculation.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: string_1_True_None # A variable +variable: string_1_True_None ---- diff --git a/tests/results/test_examples/00_9default_calculation.gitlab.md b/tests/results/test_examples/00_9default_calculation.gitlab.md index 0d89b1ba9..811c35d02 100644 --- a/tests/results/test_examples/00_9default_calculation.gitlab.md +++ b/tests/results/test_examples/00_9default_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: string_1_True_None # A variable +variable: string_1_True_None ```
diff --git a/tests/results/test_examples/00_9default_calculation.html b/tests/results/test_examples/00_9default_calculation.html index 31880001f..8871d9f67 100644 --- a/tests/results/test_examples/00_9default_calculation.html +++ b/tests/results/test_examples/00_9default_calculation.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: string_1_True_None  # A variable
\ No newline at end of file +
variable: string_1_True_None
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_calculation.sh b/tests/results/test_examples/00_9default_calculation.sh index 331a7730d..8ba2bbc80 100644 --- a/tests/results/test_examples/00_9default_calculation.sh +++ b/tests/results/test_examples/00_9default_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: string_1_True_None # A variable  +variable: string_1_True_None  diff --git a/tests/results/test_examples/00_9default_calculation_information.adoc b/tests/results/test_examples/00_9default_calculation_information.adoc index ad2ddecd3..304e47533 100644 --- a/tests/results/test_examples/00_9default_calculation_information.adoc +++ b/tests/results/test_examples/00_9default_calculation_information.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: example # A variable +var: example ---- diff --git a/tests/results/test_examples/00_9default_calculation_information.gitlab.md b/tests/results/test_examples/00_9default_calculation_information.gitlab.md index 050ef3121..3fdf50681 100644 --- a/tests/results/test_examples/00_9default_calculation_information.gitlab.md +++ b/tests/results/test_examples/00_9default_calculation_information.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: example # A variable +var: example ```
diff --git a/tests/results/test_examples/00_9default_calculation_information.html b/tests/results/test_examples/00_9default_calculation_information.html index b4697eade..bc1883979 100644 --- a/tests/results/test_examples/00_9default_calculation_information.html +++ b/tests/results/test_examples/00_9default_calculation_information.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: example                  # A variable
\ No newline at end of file +
var: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_calculation_information.sh b/tests/results/test_examples/00_9default_calculation_information.sh index 99be660dd..2cefeb024 100644 --- a/tests/results/test_examples/00_9default_calculation_information.sh +++ b/tests/results/test_examples/00_9default_calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: example # A variable  +var: example  diff --git a/tests/results/test_examples/00_9default_calculation_information_other_variable.adoc b/tests/results/test_examples/00_9default_calculation_information_other_variable.adoc index ae79637e7..1e16b08e0 100644 --- a/tests/results/test_examples/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test_examples/00_9default_calculation_information_other_variable.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var1: example # A first variable +var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_examples/00_9default_calculation_information_other_variable.gitlab.md index afdbb277d..9dcc86315 100644 --- a/tests/results/test_examples/00_9default_calculation_information_other_variable.gitlab.md +++ b/tests/results/test_examples/00_9default_calculation_information_other_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: example # A first variable +var1: example ```
@@ -10,8 +10,8 @@ var1: example # A first variable ```yaml --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_9default_calculation_information_other_variable.html b/tests/results/test_examples/00_9default_calculation_information_other_variable.html index 10397d393..6d424fc0f 100644 --- a/tests/results/test_examples/00_9default_calculation_information_other_variable.html +++ b/tests/results/test_examples/00_9default_calculation_information_other_variable.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var1: example                 # A first variable

Example with all variables modifiable

+
var1: example

Example with all variables modifiable

-
var1: example                 # A first variable
-var2: example                 # A second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_calculation_information_other_variable.sh b/tests/results/test_examples/00_9default_calculation_information_other_variable.sh index 852c4d363..adc9640a8 100644 --- a/tests/results/test_examples/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_examples/00_9default_calculation_information_other_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A first variable  - - +var1: example  Example with all variables modifiable - ---  -var1: example # A first variable  -var2: example # A second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_9default_calculation_multi_optional.sh b/tests/results/test_examples/00_9default_calculation_multi_optional.sh index 694309674..509206f4f 100644 --- a/tests/results/test_examples/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_examples/00_9default_calculation_multi_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples/00_9default_calculation_multi_optional2.sh b/tests/results/test_examples/00_9default_calculation_multi_optional2.sh index 694309674..509206f4f 100644 --- a/tests/results/test_examples/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_examples/00_9default_calculation_multi_optional2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples/00_9default_calculation_multi_optional_default.sh b/tests/results/test_examples/00_9default_calculation_multi_optional_default.sh index 701eb608e..f777e864b 100644 --- a/tests/results/test_examples/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_examples/00_9default_calculation_multi_optional_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples/00_9default_calculation_optional.sh b/tests/results/test_examples/00_9default_calculation_optional.sh index 2626c4c58..5ec00089a 100644 --- a/tests/results/test_examples/00_9default_calculation_optional.sh +++ b/tests/results/test_examples/00_9default_calculation_optional.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  my_calculated_variable:   - example  - - Example with all variables modifiable - ---  my_calculated_variable:   - example  diff --git a/tests/results/test_examples/00_9default_calculation_optional_exists.sh b/tests/results/test_examples/00_9default_calculation_optional_exists.sh index 7f901f2f8..31a94d960 100644 --- a/tests/results/test_examples/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_examples/00_9default_calculation_optional_exists.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable:   - val1  diff --git a/tests/results/test_examples/00_9default_calculation_param_optional.adoc b/tests/results/test_examples/00_9default_calculation_param_optional.adoc index c21773477..b0649cf87 100644 --- a/tests/results/test_examples/00_9default_calculation_param_optional.adoc +++ b/tests/results/test_examples/00_9default_calculation_param_optional.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: no # A first variable -var2: no # A second variable +var1: no +var2: no ---- diff --git a/tests/results/test_examples/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_examples/00_9default_calculation_param_optional.gitlab.md index df2699760..57e887e51 100644 --- a/tests/results/test_examples/00_9default_calculation_param_optional.gitlab.md +++ b/tests/results/test_examples/00_9default_calculation_param_optional.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: no # A first variable -var2: no # A second variable +var1: no +var2: no ```
diff --git a/tests/results/test_examples/00_9default_calculation_param_optional.html b/tests/results/test_examples/00_9default_calculation_param_optional.html index 803e886fe..0bba0e4e2 100644 --- a/tests/results/test_examples/00_9default_calculation_param_optional.html +++ b/tests/results/test_examples/00_9default_calculation_param_optional.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: no                      # A first variable
-var2: no                      # A second variable
\ No newline at end of file +
var1: no
+var2: no
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_calculation_param_optional.sh b/tests/results/test_examples/00_9default_calculation_param_optional.sh index bb113a148..33012cfc8 100644 --- a/tests/results/test_examples/00_9default_calculation_param_optional.sh +++ b/tests/results/test_examples/00_9default_calculation_param_optional.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: no # A first variable  -var2: no # A second variable  +var1: no  +var2: no  diff --git a/tests/results/test_examples/00_9default_information_other_variable.adoc b/tests/results/test_examples/00_9default_information_other_variable.adoc index ae79637e7..1e16b08e0 100644 --- a/tests/results/test_examples/00_9default_information_other_variable.adoc +++ b/tests/results/test_examples/00_9default_information_other_variable.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var1: example # A first variable +var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_9default_information_other_variable.gitlab.md b/tests/results/test_examples/00_9default_information_other_variable.gitlab.md index afdbb277d..9dcc86315 100644 --- a/tests/results/test_examples/00_9default_information_other_variable.gitlab.md +++ b/tests/results/test_examples/00_9default_information_other_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: example # A first variable +var1: example ```
@@ -10,8 +10,8 @@ var1: example # A first variable ```yaml --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_9default_information_other_variable.html b/tests/results/test_examples/00_9default_information_other_variable.html index 10397d393..6d424fc0f 100644 --- a/tests/results/test_examples/00_9default_information_other_variable.html +++ b/tests/results/test_examples/00_9default_information_other_variable.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var1: example                 # A first variable

Example with all variables modifiable

+
var1: example

Example with all variables modifiable

-
var1: example                 # A first variable
-var2: example                 # A second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_information_other_variable.sh b/tests/results/test_examples/00_9default_information_other_variable.sh index 852c4d363..adc9640a8 100644 --- a/tests/results/test_examples/00_9default_information_other_variable.sh +++ b/tests/results/test_examples/00_9default_information_other_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A first variable  - - +var1: example  Example with all variables modifiable - ---  -var1: example # A first variable  -var2: example # A second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_9default_information_other_variable2.adoc b/tests/results/test_examples/00_9default_information_other_variable2.adoc index ae79637e7..1e16b08e0 100644 --- a/tests/results/test_examples/00_9default_information_other_variable2.adoc +++ b/tests/results/test_examples/00_9default_information_other_variable2.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var1: example # A first variable +var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/00_9default_information_other_variable2.gitlab.md b/tests/results/test_examples/00_9default_information_other_variable2.gitlab.md index afdbb277d..9dcc86315 100644 --- a/tests/results/test_examples/00_9default_information_other_variable2.gitlab.md +++ b/tests/results/test_examples/00_9default_information_other_variable2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: example # A first variable +var1: example ```
@@ -10,8 +10,8 @@ var1: example # A first variable ```yaml --- -var1: example # A first variable -var2: example # A second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/00_9default_information_other_variable2.html b/tests/results/test_examples/00_9default_information_other_variable2.html index 10397d393..6d424fc0f 100644 --- a/tests/results/test_examples/00_9default_information_other_variable2.html +++ b/tests/results/test_examples/00_9default_information_other_variable2.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var1: example                 # A first variable

Example with all variables modifiable

+
var1: example

Example with all variables modifiable

-
var1: example                 # A first variable
-var2: example                 # A second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_information_other_variable2.sh b/tests/results/test_examples/00_9default_information_other_variable2.sh index 852c4d363..adc9640a8 100644 --- a/tests/results/test_examples/00_9default_information_other_variable2.sh +++ b/tests/results/test_examples/00_9default_information_other_variable2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var1: example # A first variable  - - +var1: example  Example with all variables modifiable - ---  -var1: example # A first variable  -var2: example # A second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/00_9default_integer.adoc b/tests/results/test_examples/00_9default_integer.adoc index 7bb8a8a20..eb38aa270 100644 --- a/tests/results/test_examples/00_9default_integer.adoc +++ b/tests/results/test_examples/00_9default_integer.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: 9 # A variable +var: 9 ---- diff --git a/tests/results/test_examples/00_9default_integer.gitlab.md b/tests/results/test_examples/00_9default_integer.gitlab.md index 2397f6719..e22a5dfe1 100644 --- a/tests/results/test_examples/00_9default_integer.gitlab.md +++ b/tests/results/test_examples/00_9default_integer.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: 9 # A variable +var: 9 ```
diff --git a/tests/results/test_examples/00_9default_integer.html b/tests/results/test_examples/00_9default_integer.html index 8d056ee80..005bea8a6 100644 --- a/tests/results/test_examples/00_9default_integer.html +++ b/tests/results/test_examples/00_9default_integer.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: 9                        # A variable
\ No newline at end of file +
var: 9
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_integer.sh b/tests/results/test_examples/00_9default_integer.sh index 2a1515117..74b6f84ea 100644 --- a/tests/results/test_examples/00_9default_integer.sh +++ b/tests/results/test_examples/00_9default_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: 9 # A variable  +var: 9  diff --git a/tests/results/test_examples/00_9default_number.adoc b/tests/results/test_examples/00_9default_number.adoc index 7bb8a8a20..eb38aa270 100644 --- a/tests/results/test_examples/00_9default_number.adoc +++ b/tests/results/test_examples/00_9default_number.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: 9 # A variable +var: 9 ---- diff --git a/tests/results/test_examples/00_9default_number.gitlab.md b/tests/results/test_examples/00_9default_number.gitlab.md index 2397f6719..e22a5dfe1 100644 --- a/tests/results/test_examples/00_9default_number.gitlab.md +++ b/tests/results/test_examples/00_9default_number.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: 9 # A variable +var: 9 ```
diff --git a/tests/results/test_examples/00_9default_number.html b/tests/results/test_examples/00_9default_number.html index 8d056ee80..005bea8a6 100644 --- a/tests/results/test_examples/00_9default_number.html +++ b/tests/results/test_examples/00_9default_number.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: 9                        # A variable
\ No newline at end of file +
var: 9
\ No newline at end of file diff --git a/tests/results/test_examples/00_9default_number.sh b/tests/results/test_examples/00_9default_number.sh index 2a1515117..74b6f84ea 100644 --- a/tests/results/test_examples/00_9default_number.sh +++ b/tests/results/test_examples/00_9default_number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: 9 # A variable  +var: 9  diff --git a/tests/results/test_examples/01_6boolean_multi.adoc b/tests/results/test_examples/01_6boolean_multi.adoc index b135ac071..8dfc1ade4 100644 --- a/tests/results/test_examples/01_6boolean_multi.adoc +++ b/tests/results/test_examples/01_6boolean_multi.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -var1: # The first variable +var1: - true -var2: # The second variable +var2: - true -var3: # The third variable +var3: - true -var4: # The forth variable +var4: - false -var5: # The fifth variable +var5: - false -var6: # The sixth variable +var6: - false -var7: # The seventh variable +var7: - true -var8: # The eighth variable +var8: - true ---- diff --git a/tests/results/test_examples/01_6boolean_multi.gitlab.md b/tests/results/test_examples/01_6boolean_multi.gitlab.md index 9eb59de26..37ae2d8db 100644 --- a/tests/results/test_examples/01_6boolean_multi.gitlab.md +++ b/tests/results/test_examples/01_6boolean_multi.gitlab.md @@ -2,21 +2,21 @@ ```yaml --- -var1: # The first variable +var1: - true -var2: # The second variable +var2: - true -var3: # The third variable +var3: - true -var4: # The forth variable +var4: - false -var5: # The fifth variable +var5: - false -var6: # The sixth variable +var6: - false -var7: # The seventh variable +var7: - true -var8: # The eighth variable +var8: - true ```
diff --git a/tests/results/test_examples/01_6boolean_multi.html b/tests/results/test_examples/01_6boolean_multi.html index af1ae6476..ee95b1f23 100644 --- a/tests/results/test_examples/01_6boolean_multi.html +++ b/tests/results/test_examples/01_6boolean_multi.html @@ -1,18 +1,18 @@

Example with all variables modifiable

-
var1:                         # The first variable
+
var1:
   - true
-var2:                         # The second variable
+var2:
   - true
-var3:                         # The third variable
+var3:
   - true
-var4:                         # The forth variable
+var4:
   - false
-var5:                         # The fifth variable
+var5:
   - false
-var6:                         # The sixth variable
+var6:
   - false
-var7:                         # The seventh variable
+var7:
   - true
-var8:                         # The eighth variable
+var8:
   - true
\ No newline at end of file diff --git a/tests/results/test_examples/01_6boolean_multi.sh b/tests/results/test_examples/01_6boolean_multi.sh index 01fccda19..3f96563f4 100644 --- a/tests/results/test_examples/01_6boolean_multi.sh +++ b/tests/results/test_examples/01_6boolean_multi.sh @@ -1,23 +1,20 @@ - - Example with all variables modifiable - ---  -var1: # The first variable  +var1:   - true  -var2: # The second variable  +var2:   - true  -var3: # The third variable  +var3:   - true  -var4: # The forth variable  +var4:   - false  -var5: # The fifth variable  +var5:   - false  -var6: # The sixth variable  +var6:   - false  -var7: # The seventh variable  +var7:   - true  -var8: # The eighth variable  +var8:   - true  diff --git a/tests/results/test_examples/01_6custom_multi.adoc b/tests/results/test_examples/01_6custom_multi.adoc index 0a07df7a6..d8f678619 100644 --- a/tests/results/test_examples/01_6custom_multi.adoc +++ b/tests/results/test_examples/01_6custom_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -custom1: # A first custom variable +custom1: - xxx ---- == Example with all variables modifiable @@ -11,8 +11,8 @@ custom1: # A first custom variable [,yaml] ---- --- -custom1: # A first custom variable +custom1: - xxx -custom2: # A second custom variable +custom2: - value ---- diff --git a/tests/results/test_examples/01_6custom_multi.gitlab.md b/tests/results/test_examples/01_6custom_multi.gitlab.md index a114b2f00..ca33bf46c 100644 --- a/tests/results/test_examples/01_6custom_multi.gitlab.md +++ b/tests/results/test_examples/01_6custom_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -custom1: # A first custom variable +custom1: - xxx ```
@@ -11,9 +11,9 @@ custom1: # A first custom variable ```yaml --- -custom1: # A first custom variable +custom1: - xxx -custom2: # A second custom variable +custom2: - value ```
diff --git a/tests/results/test_examples/01_6custom_multi.html b/tests/results/test_examples/01_6custom_multi.html index 0c1b59385..d1adec673 100644 --- a/tests/results/test_examples/01_6custom_multi.html +++ b/tests/results/test_examples/01_6custom_multi.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
custom1:                      # A first custom variable
+
custom1:
   - xxx

Example with all variables modifiable

-
custom1:                      # A first custom variable
+
custom1:
   - xxx
-custom2:                      # A second custom variable
+custom2:
   - value
\ No newline at end of file diff --git a/tests/results/test_examples/01_6custom_multi.sh b/tests/results/test_examples/01_6custom_multi.sh index e8dc25d22..cb2ce5235 100644 --- a/tests/results/test_examples/01_6custom_multi.sh +++ b/tests/results/test_examples/01_6custom_multi.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -custom1: # A first custom variable  +custom1:   - xxx  - - Example with all variables modifiable - ---  -custom1: # A first custom variable  +custom1:   - xxx  -custom2: # A second custom variable  +custom2:   - value  diff --git a/tests/results/test_examples/01_6float_multi.adoc b/tests/results/test_examples/01_6float_multi.adoc index bf749dc80..457c9cce8 100644 --- a/tests/results/test_examples/01_6float_multi.adoc +++ b/tests/results/test_examples/01_6float_multi.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -var1: # The first variable +var1: - 0.0 -var2: # The second variable +var2: - 0.0 -var3: # The third variable +var3: - 0.0 -var4: # The forth variable +var4: - 10.1 -var5: # The fifth variable +var5: - 10.1 -var6: # The sixth variable +var6: - 10.1 -var7: # The seventh variable +var7: - 0.0 -var8: # The eighth variable +var8: - 0.0 ---- diff --git a/tests/results/test_examples/01_6float_multi.gitlab.md b/tests/results/test_examples/01_6float_multi.gitlab.md index 0311abc8c..b4dbafed8 100644 --- a/tests/results/test_examples/01_6float_multi.gitlab.md +++ b/tests/results/test_examples/01_6float_multi.gitlab.md @@ -2,21 +2,21 @@ ```yaml --- -var1: # The first variable +var1: - 0.0 -var2: # The second variable +var2: - 0.0 -var3: # The third variable +var3: - 0.0 -var4: # The forth variable +var4: - 10.1 -var5: # The fifth variable +var5: - 10.1 -var6: # The sixth variable +var6: - 10.1 -var7: # The seventh variable +var7: - 0.0 -var8: # The eighth variable +var8: - 0.0 ```
diff --git a/tests/results/test_examples/01_6float_multi.html b/tests/results/test_examples/01_6float_multi.html index acd42e8b1..b193cd808 100644 --- a/tests/results/test_examples/01_6float_multi.html +++ b/tests/results/test_examples/01_6float_multi.html @@ -1,18 +1,18 @@

Example with all variables modifiable

-
var1:                         # The first variable
+
var1:
   - 0.0
-var2:                         # The second variable
+var2:
   - 0.0
-var3:                         # The third variable
+var3:
   - 0.0
-var4:                         # The forth variable
+var4:
   - 10.1
-var5:                         # The fifth variable
+var5:
   - 10.1
-var6:                         # The sixth variable
+var6:
   - 10.1
-var7:                         # The seventh variable
+var7:
   - 0.0
-var8:                         # The eighth variable
+var8:
   - 0.0
\ No newline at end of file diff --git a/tests/results/test_examples/01_6float_multi.sh b/tests/results/test_examples/01_6float_multi.sh index 6412a7e60..d541fb8d0 100644 --- a/tests/results/test_examples/01_6float_multi.sh +++ b/tests/results/test_examples/01_6float_multi.sh @@ -1,23 +1,20 @@ - - Example with all variables modifiable - ---  -var1: # The first variable  +var1:   - 0.0  -var2: # The second variable  +var2:   - 0.0  -var3: # The third variable  +var3:   - 0.0  -var4: # The forth variable  +var4:   - 10.1  -var5: # The fifth variable  +var5:   - 10.1  -var6: # The sixth variable  +var6:   - 10.1  -var7: # The seventh variable  +var7:   - 0.0  -var8: # The eighth variable  +var8:   - 0.0  diff --git a/tests/results/test_examples/01_6integer_multi.adoc b/tests/results/test_examples/01_6integer_multi.adoc index 4a33f089b..a52881ccd 100644 --- a/tests/results/test_examples/01_6integer_multi.adoc +++ b/tests/results/test_examples/01_6integer_multi.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -var1: # The first variable +var1: - 0 -var2: # The second variable +var2: - 0 -var3: # The third variable +var3: - 0 -var4: # The forth variable +var4: - 10 -var5: # The fifth variable +var5: - 10 -var6: # The sixth variable +var6: - 10 -var7: # The seventh variable +var7: - 0 -var8: # The eighth variable +var8: - 0 ---- diff --git a/tests/results/test_examples/01_6integer_multi.gitlab.md b/tests/results/test_examples/01_6integer_multi.gitlab.md index cfbec6a91..6ccbc816e 100644 --- a/tests/results/test_examples/01_6integer_multi.gitlab.md +++ b/tests/results/test_examples/01_6integer_multi.gitlab.md @@ -2,21 +2,21 @@ ```yaml --- -var1: # The first variable +var1: - 0 -var2: # The second variable +var2: - 0 -var3: # The third variable +var3: - 0 -var4: # The forth variable +var4: - 10 -var5: # The fifth variable +var5: - 10 -var6: # The sixth variable +var6: - 10 -var7: # The seventh variable +var7: - 0 -var8: # The eighth variable +var8: - 0 ```
diff --git a/tests/results/test_examples/01_6integer_multi.html b/tests/results/test_examples/01_6integer_multi.html index 32a50aeac..cb64b90bb 100644 --- a/tests/results/test_examples/01_6integer_multi.html +++ b/tests/results/test_examples/01_6integer_multi.html @@ -1,18 +1,18 @@

Example with all variables modifiable

-
var1:                         # The first variable
+
var1:
   - 0
-var2:                         # The second variable
+var2:
   - 0
-var3:                         # The third variable
+var3:
   - 0
-var4:                         # The forth variable
+var4:
   - 10
-var5:                         # The fifth variable
+var5:
   - 10
-var6:                         # The sixth variable
+var6:
   - 10
-var7:                         # The seventh variable
+var7:
   - 0
-var8:                         # The eighth variable
+var8:
   - 0
\ No newline at end of file diff --git a/tests/results/test_examples/01_6integer_multi.sh b/tests/results/test_examples/01_6integer_multi.sh index 234deb5dd..2353a49fd 100644 --- a/tests/results/test_examples/01_6integer_multi.sh +++ b/tests/results/test_examples/01_6integer_multi.sh @@ -1,23 +1,20 @@ - - Example with all variables modifiable - ---  -var1: # The first variable  +var1:   - 0  -var2: # The second variable  +var2:   - 0  -var3: # The third variable  +var3:   - 0  -var4: # The forth variable  +var4:   - 10  -var5: # The fifth variable  +var5:   - 10  -var6: # The sixth variable  +var6:   - 10  -var7: # The seventh variable  +var7:   - 0  -var8: # The eighth variable  +var8:   - 0  diff --git a/tests/results/test_examples/01_6integer_multi_mandatory.adoc b/tests/results/test_examples/01_6integer_multi_mandatory.adoc index 387970e71..01abd5bba 100644 --- a/tests/results/test_examples/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_examples/01_6integer_multi_mandatory.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var: # The first variable +var: - 42 ---- == Example with all variables modifiable @@ -11,6 +11,6 @@ var: # The first variable [,yaml] ---- --- -var: # The first variable +var: - 42 ---- diff --git a/tests/results/test_examples/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_examples/01_6integer_multi_mandatory.gitlab.md index 6ef89f726..2187f4773 100644 --- a/tests/results/test_examples/01_6integer_multi_mandatory.gitlab.md +++ b/tests/results/test_examples/01_6integer_multi_mandatory.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: # The first variable +var: - 42 ```
@@ -11,7 +11,7 @@ var: # The first variable ```yaml --- -var: # The first variable +var: - 42 ```
diff --git a/tests/results/test_examples/01_6integer_multi_mandatory.html b/tests/results/test_examples/01_6integer_multi_mandatory.html index f91cd4209..b1f40cd45 100644 --- a/tests/results/test_examples/01_6integer_multi_mandatory.html +++ b/tests/results/test_examples/01_6integer_multi_mandatory.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var:                          # The first variable
+
var:
   - 42

Example with all variables modifiable

-
var:                          # The first variable
+
var:
   - 42
\ No newline at end of file diff --git a/tests/results/test_examples/01_6integer_multi_mandatory.sh b/tests/results/test_examples/01_6integer_multi_mandatory.sh index edd4392dd..62b4bee25 100644 --- a/tests/results/test_examples/01_6integer_multi_mandatory.sh +++ b/tests/results/test_examples/01_6integer_multi_mandatory.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var: # The first variable  +var:   - 42  - - Example with all variables modifiable - ---  -var: # The first variable  +var:   - 42  diff --git a/tests/results/test_examples/01_6string_empty.adoc b/tests/results/test_examples/01_6string_empty.adoc index 05f372212..397c14b70 100644 --- a/tests/results/test_examples/01_6string_empty.adoc +++ b/tests/results/test_examples/01_6string_empty.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: # The second variable +var1: - value - ---- diff --git a/tests/results/test_examples/01_6string_empty.gitlab.md b/tests/results/test_examples/01_6string_empty.gitlab.md index e65f9a84d..94a90aee0 100644 --- a/tests/results/test_examples/01_6string_empty.gitlab.md +++ b/tests/results/test_examples/01_6string_empty.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # The second variable +var1: - value - ``` diff --git a/tests/results/test_examples/01_6string_empty.html b/tests/results/test_examples/01_6string_empty.html index fa0b68d58..7aaf234ca 100644 --- a/tests/results/test_examples/01_6string_empty.html +++ b/tests/results/test_examples/01_6string_empty.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1:                         # The second variable
+
var1:
   - value
   -
\ No newline at end of file diff --git a/tests/results/test_examples/01_6string_empty.sh b/tests/results/test_examples/01_6string_empty.sh index afb825948..186664888 100644 --- a/tests/results/test_examples/01_6string_empty.sh +++ b/tests/results/test_examples/01_6string_empty.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: # The second variable  +var1:   - value   -  diff --git a/tests/results/test_examples/01_6string_multi.adoc b/tests/results/test_examples/01_6string_multi.adoc index f0c1c14ea..2e3896cfd 100644 --- a/tests/results/test_examples/01_6string_multi.adoc +++ b/tests/results/test_examples/01_6string_multi.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var1: # The first variable +var1: - example -var2: # The second variable +var2: - example -var3: # The third variable +var3: - example ---- == Example with all variables modifiable @@ -15,20 +15,20 @@ var3: # The third variable [,yaml] ---- --- -var1: # The first variable +var1: - example -var2: # The second variable +var2: - example -var3: # The third variable +var3: - example -var4: # The forth variable +var4: - value -var5: # The fifth variable +var5: - value -var6: # The sixth variable +var6: - value -var7: # The seventh variable +var7: - value -var8: # The eighth variable +var8: - value ---- diff --git a/tests/results/test_examples/01_6string_multi.gitlab.md b/tests/results/test_examples/01_6string_multi.gitlab.md index 675a53b77..93db55a9e 100644 --- a/tests/results/test_examples/01_6string_multi.gitlab.md +++ b/tests/results/test_examples/01_6string_multi.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -var1: # The first variable +var1: - example -var2: # The second variable +var2: - example -var3: # The third variable +var3: - example ```
@@ -15,21 +15,21 @@ var3: # The third variable ```yaml --- -var1: # The first variable +var1: - example -var2: # The second variable +var2: - example -var3: # The third variable +var3: - example -var4: # The forth variable +var4: - value -var5: # The fifth variable +var5: - value -var6: # The sixth variable +var6: - value -var7: # The seventh variable +var7: - value -var8: # The eighth variable +var8: - value ```
diff --git a/tests/results/test_examples/01_6string_multi.html b/tests/results/test_examples/01_6string_multi.html index 25868858c..69a263c26 100644 --- a/tests/results/test_examples/01_6string_multi.html +++ b/tests/results/test_examples/01_6string_multi.html @@ -1,25 +1,25 @@

Example with mandatory variables not filled in

-
var1:                         # The first variable
+
var1:
   - example
-var2:                         # The second variable
+var2:
   - example
-var3:                         # The third variable
+var3:
   - example

Example with all variables modifiable

-
var1:                         # The first variable
+
var1:
   - example
-var2:                         # The second variable
+var2:
   - example
-var3:                         # The third variable
+var3:
   - example
-var4:                         # The forth variable
+var4:
   - value
-var5:                         # The fifth variable
+var5:
   - value
-var6:                         # The sixth variable
+var6:
   - value
-var7:                         # The seventh variable
+var7:
   - value
-var8:                         # The eighth variable
+var8:
   - value
\ No newline at end of file diff --git a/tests/results/test_examples/01_6string_multi.sh b/tests/results/test_examples/01_6string_multi.sh index a95d50821..7841370ea 100644 --- a/tests/results/test_examples/01_6string_multi.sh +++ b/tests/results/test_examples/01_6string_multi.sh @@ -1,36 +1,30 @@ - - Example with mandatory variables not filled in - ---  -var1: # The first variable  +var1:   - example  -var2: # The second variable  +var2:   - example  -var3: # The third variable  +var3:   - example  - - Example with all variables modifiable - ---  -var1: # The first variable  +var1:   - example  -var2: # The second variable  +var2:   - example  -var3: # The third variable  +var3:   - example  -var4: # The forth variable  +var4:   - value  -var5: # The fifth variable  +var5:   - value  -var6: # The sixth variable  +var6:   - value  -var7: # The seventh variable  +var7:   - value  -var8: # The eighth variable  +var8:   - value  diff --git a/tests/results/test_examples/01_6string_multi_length.adoc b/tests/results/test_examples/01_6string_multi_length.adoc index d0e872019..cb62c1762 100644 --- a/tests/results/test_examples/01_6string_multi_length.adoc +++ b/tests/results/test_examples/01_6string_multi_length.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var1: # The variable +var1: - val1 - val2 - val3 -var2: # The variable +var2: - 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 index 01d011d05..e5c133f21 100644 --- a/tests/results/test_examples/01_6string_multi_length.gitlab.md +++ b/tests/results/test_examples/01_6string_multi_length.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -var1: # The variable +var1: - val1 - val2 - val3 -var2: # The variable +var2: - val4 - val5 ``` diff --git a/tests/results/test_examples/01_6string_multi_length.html b/tests/results/test_examples/01_6string_multi_length.html index 48eac0fd5..53d169573 100644 --- a/tests/results/test_examples/01_6string_multi_length.html +++ b/tests/results/test_examples/01_6string_multi_length.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var1:                         # The variable
+
var1:
   - val1
   - val2
   - val3
-var2:                         # The variable
+var2:
   - val4
   - val5
\ No newline at end of file diff --git a/tests/results/test_examples/01_6string_multi_length.sh b/tests/results/test_examples/01_6string_multi_length.sh index d24e38f5a..afc8a4a64 100644 --- a/tests/results/test_examples/01_6string_multi_length.sh +++ b/tests/results/test_examples/01_6string_multi_length.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var1: # The variable  +var1:   - val1   - val2   - val3  -var2: # The variable  +var2:   - val4   - val5  diff --git a/tests/results/test_examples/01_7value_multi_doublequote.adoc b/tests/results/test_examples/01_7value_multi_doublequote.adoc index a834fadca..b36b23a53 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote.adoc +++ b/tests/results/test_examples/01_7value_multi_doublequote.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - quote" ---- diff --git a/tests/results/test_examples/01_7value_multi_doublequote.gitlab.md b/tests/results/test_examples/01_7value_multi_doublequote.gitlab.md index 663212ef6..46a545517 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote.gitlab.md +++ b/tests/results/test_examples/01_7value_multi_doublequote.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - quote" ```
diff --git a/tests/results/test_examples/01_7value_multi_doublequote.html b/tests/results/test_examples/01_7value_multi_doublequote.html index 6f657d690..2e5e053d9 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote.html +++ b/tests/results/test_examples/01_7value_multi_doublequote.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - quote"
\ No newline at end of file diff --git a/tests/results/test_examples/01_7value_multi_doublequote.sh b/tests/results/test_examples/01_7value_multi_doublequote.sh index 8d27ee4e7..68a38f972 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote.sh +++ b/tests/results/test_examples/01_7value_multi_doublequote.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - quote"  diff --git a/tests/results/test_examples/01_7value_multi_doublequote2.adoc b/tests/results/test_examples/01_7value_multi_doublequote2.adoc index 281275ab9..89becc47d 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_examples/01_7value_multi_doublequote2.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - quote'" ---- diff --git a/tests/results/test_examples/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_examples/01_7value_multi_doublequote2.gitlab.md index 61148ee6a..102d94b34 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote2.gitlab.md +++ b/tests/results/test_examples/01_7value_multi_doublequote2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - quote'" ```
diff --git a/tests/results/test_examples/01_7value_multi_doublequote2.html b/tests/results/test_examples/01_7value_multi_doublequote2.html index 41c0cb855..361058346 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote2.html +++ b/tests/results/test_examples/01_7value_multi_doublequote2.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - quote'"
\ No newline at end of file diff --git a/tests/results/test_examples/01_7value_multi_doublequote2.sh b/tests/results/test_examples/01_7value_multi_doublequote2.sh index a78ae1aaa..28e70e59f 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote2.sh +++ b/tests/results/test_examples/01_7value_multi_doublequote2.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - quote'"  diff --git a/tests/results/test_examples/01_7value_multi_quote.adoc b/tests/results/test_examples/01_7value_multi_quote.adoc index c79e15b82..d262ccde8 100644 --- a/tests/results/test_examples/01_7value_multi_quote.adoc +++ b/tests/results/test_examples/01_7value_multi_quote.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - quote' ---- diff --git a/tests/results/test_examples/01_7value_multi_quote.gitlab.md b/tests/results/test_examples/01_7value_multi_quote.gitlab.md index a9ac9a68e..2f8139c95 100644 --- a/tests/results/test_examples/01_7value_multi_quote.gitlab.md +++ b/tests/results/test_examples/01_7value_multi_quote.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - quote' ```
diff --git a/tests/results/test_examples/01_7value_multi_quote.html b/tests/results/test_examples/01_7value_multi_quote.html index d97718073..6a598f138 100644 --- a/tests/results/test_examples/01_7value_multi_quote.html +++ b/tests/results/test_examples/01_7value_multi_quote.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - quote'
\ No newline at end of file diff --git a/tests/results/test_examples/01_7value_multi_quote.sh b/tests/results/test_examples/01_7value_multi_quote.sh index d548b3d8a..dc73d63b3 100644 --- a/tests/results/test_examples/01_7value_multi_quote.sh +++ b/tests/results/test_examples/01_7value_multi_quote.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - quote'  diff --git a/tests/results/test_examples/01_8calculation_information_multi.adoc b/tests/results/test_examples/01_8calculation_information_multi.adoc index 8774ce24f..375aa5616 100644 --- a/tests/results/test_examples/01_8calculation_information_multi.adoc +++ b/tests/results/test_examples/01_8calculation_information_multi.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - example ---- diff --git a/tests/results/test_examples/01_8calculation_information_multi.gitlab.md b/tests/results/test_examples/01_8calculation_information_multi.gitlab.md index 05131fd3a..d403b5e83 100644 --- a/tests/results/test_examples/01_8calculation_information_multi.gitlab.md +++ b/tests/results/test_examples/01_8calculation_information_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - example ```
diff --git a/tests/results/test_examples/01_8calculation_information_multi.html b/tests/results/test_examples/01_8calculation_information_multi.html index 1a4dd0610..1b70abd78 100644 --- a/tests/results/test_examples/01_8calculation_information_multi.html +++ b/tests/results/test_examples/01_8calculation_information_multi.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - example
\ No newline at end of file diff --git a/tests/results/test_examples/01_8calculation_information_multi.sh b/tests/results/test_examples/01_8calculation_information_multi.sh index 22161147b..96931d69c 100644 --- a/tests/results/test_examples/01_8calculation_information_multi.sh +++ b/tests/results/test_examples/01_8calculation_information_multi.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - example  diff --git a/tests/results/test_examples/01_9choice_variable_multi.adoc b/tests/results/test_examples/01_9choice_variable_multi.adoc index 8e2d82539..349cb901d 100644 --- a/tests/results/test_examples/01_9choice_variable_multi.adoc +++ b/tests/results/test_examples/01_9choice_variable_multi.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -variable2: a_choice # A second variable +variable2: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -variable1: # A first variable +variable1: - a - b - c -variable2: a_choice # A second variable +variable2: a_choice ---- diff --git a/tests/results/test_examples/01_9choice_variable_multi.gitlab.md b/tests/results/test_examples/01_9choice_variable_multi.gitlab.md index 6c4e1ddb0..1e8b72685 100644 --- a/tests/results/test_examples/01_9choice_variable_multi.gitlab.md +++ b/tests/results/test_examples/01_9choice_variable_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable2: a_choice # A second variable +variable2: a_choice ```
@@ -10,11 +10,11 @@ variable2: a_choice # A second variable ```yaml --- -variable1: # A first variable +variable1: - a - b - c -variable2: a_choice # A second variable +variable2: a_choice ```
diff --git a/tests/results/test_examples/01_9choice_variable_multi.html b/tests/results/test_examples/01_9choice_variable_multi.html index 5d853fbea..a434fa513 100644 --- a/tests/results/test_examples/01_9choice_variable_multi.html +++ b/tests/results/test_examples/01_9choice_variable_multi.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
variable2: a_choice           # A second variable

Example with all variables modifiable

+
variable2: a_choice

Example with all variables modifiable

-
variable1:                    # A first variable
+
variable1:
   - a
   - b
   - c
-variable2: a_choice           # A second variable
\ No newline at end of file +variable2: a_choice
\ No newline at end of file diff --git a/tests/results/test_examples/01_9choice_variable_multi.sh b/tests/results/test_examples/01_9choice_variable_multi.sh index 26fcc3031..c64189d14 100644 --- a/tests/results/test_examples/01_9choice_variable_multi.sh +++ b/tests/results/test_examples/01_9choice_variable_multi.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -variable2: a_choice # A second variable  - - +variable2: a_choice  Example with all variables modifiable - ---  -variable1: # A first variable  +variable1:   - a   - b   - c  -variable2: a_choice # A second variable  +variable2: a_choice  diff --git a/tests/results/test_examples/01_9choice_variable_optional.adoc b/tests/results/test_examples/01_9choice_variable_optional.adoc index 335508dd6..a1c79c230 100644 --- a/tests/results/test_examples/01_9choice_variable_optional.adoc +++ b/tests/results/test_examples/01_9choice_variable_optional.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: c # A variable +variable: c ---- diff --git a/tests/results/test_examples/01_9choice_variable_optional.gitlab.md b/tests/results/test_examples/01_9choice_variable_optional.gitlab.md index a1d66f6a5..0931c361b 100644 --- a/tests/results/test_examples/01_9choice_variable_optional.gitlab.md +++ b/tests/results/test_examples/01_9choice_variable_optional.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: c # A variable +variable: c ```
diff --git a/tests/results/test_examples/01_9choice_variable_optional.html b/tests/results/test_examples/01_9choice_variable_optional.html index 3803ee36f..d01597e2d 100644 --- a/tests/results/test_examples/01_9choice_variable_optional.html +++ b/tests/results/test_examples/01_9choice_variable_optional.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: c                   # A variable
\ No newline at end of file +
variable: c
\ No newline at end of file diff --git a/tests/results/test_examples/01_9choice_variable_optional.sh b/tests/results/test_examples/01_9choice_variable_optional.sh index 9592207b4..7d4eeb4d1 100644 --- a/tests/results/test_examples/01_9choice_variable_optional.sh +++ b/tests/results/test_examples/01_9choice_variable_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: c # A variable  +variable: c  diff --git a/tests/results/test_examples/02_0tags.adoc b/tests/results/test_examples/02_0tags.adoc index 13a775a56..e6a432e62 100644 --- a/tests/results/test_examples/02_0tags.adoc +++ b/tests/results/test_examples/02_0tags.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ---- diff --git a/tests/results/test_examples/02_0tags.gitlab.md b/tests/results/test_examples/02_0tags.gitlab.md index 3437b3568..c07364179 100644 --- a/tests/results/test_examples/02_0tags.gitlab.md +++ b/tests/results/test_examples/02_0tags.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
@@ -11,8 +11,8 @@ var2: example # The second variable ```yaml --- -var1: example # The first variable -var2: example # The second variable +var1: example +var2: example ```
diff --git a/tests/results/test_examples/02_0tags.html b/tests/results/test_examples/02_0tags.html index 7425ab7b2..0bf2e0214 100644 --- a/tests/results/test_examples/02_0tags.html +++ b/tests/results/test_examples/02_0tags.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var1: example                 # The first variable
-var2: example                 # The second variable

Example with all variables modifiable

+
var1: example
+var2: example

Example with all variables modifiable

-
var1: example                 # The first variable
-var2: example                 # The second variable
\ No newline at end of file +
var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/02_0tags.sh b/tests/results/test_examples/02_0tags.sh index 120b8ee89..0381b6ceb 100644 --- a/tests/results/test_examples/02_0tags.sh +++ b/tests/results/test_examples/02_0tags.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var1: example # The first variable  -var2: example # The second variable  - - +var1: example  +var2: example  Example with all variables modifiable - ---  -var1: example # The first variable  -var2: example # The second variable  +var1: example  +var2: example  diff --git a/tests/results/test_examples/04_0type_param.adoc b/tests/results/test_examples/04_0type_param.adoc index 0f6b03ee7..5dcd6d578 100644 --- a/tests/results/test_examples/04_0type_param.adoc +++ b/tests/results/test_examples/04_0type_param.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -int: 10 # A limited number +int: 10 ---- diff --git a/tests/results/test_examples/04_0type_param.gitlab.md b/tests/results/test_examples/04_0type_param.gitlab.md index b6363bdf6..c24df0f2c 100644 --- a/tests/results/test_examples/04_0type_param.gitlab.md +++ b/tests/results/test_examples/04_0type_param.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -int: 10 # A limited number +int: 10 ```
diff --git a/tests/results/test_examples/04_0type_param.html b/tests/results/test_examples/04_0type_param.html index 299ae05b1..ca4d6c6d7 100644 --- a/tests/results/test_examples/04_0type_param.html +++ b/tests/results/test_examples/04_0type_param.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
int: 10                       # A limited number
\ No newline at end of file +
int: 10
\ No newline at end of file diff --git a/tests/results/test_examples/04_0type_param.sh b/tests/results/test_examples/04_0type_param.sh index ef9e71119..4eb851d6a 100644 --- a/tests/results/test_examples/04_0type_param.sh +++ b/tests/results/test_examples/04_0type_param.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -int: 10 # A limited number  +int: 10  diff --git a/tests/results/test_examples/04_0type_param_integer.adoc b/tests/results/test_examples/04_0type_param_integer.adoc index a62c75f9a..5dcd6d578 100644 --- a/tests/results/test_examples/04_0type_param_integer.adoc +++ b/tests/results/test_examples/04_0type_param_integer.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -int: 10 # A limited integer +int: 10 ---- diff --git a/tests/results/test_examples/04_0type_param_integer.gitlab.md b/tests/results/test_examples/04_0type_param_integer.gitlab.md index c17963fde..c24df0f2c 100644 --- a/tests/results/test_examples/04_0type_param_integer.gitlab.md +++ b/tests/results/test_examples/04_0type_param_integer.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -int: 10 # A limited integer +int: 10 ```
diff --git a/tests/results/test_examples/04_0type_param_integer.html b/tests/results/test_examples/04_0type_param_integer.html index 9c6dfc065..ca4d6c6d7 100644 --- a/tests/results/test_examples/04_0type_param_integer.html +++ b/tests/results/test_examples/04_0type_param_integer.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
int: 10                       # A limited integer
\ No newline at end of file +
int: 10
\ No newline at end of file diff --git a/tests/results/test_examples/04_0type_param_integer.sh b/tests/results/test_examples/04_0type_param_integer.sh index 96fb550b6..4eb851d6a 100644 --- a/tests/results/test_examples/04_0type_param_integer.sh +++ b/tests/results/test_examples/04_0type_param_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -int: 10 # A limited integer  +int: 10  diff --git a/tests/results/test_examples/04_1auto_save.adoc b/tests/results/test_examples/04_1auto_save.adoc index 134d730a1..4b2f97ed7 100644 --- a/tests/results/test_examples/04_1auto_save.adoc +++ b/tests/results/test_examples/04_1auto_save.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: no # An auto save variable +variable: no ---- diff --git a/tests/results/test_examples/04_1auto_save.gitlab.md b/tests/results/test_examples/04_1auto_save.gitlab.md index 447c1f19f..9055092bf 100644 --- a/tests/results/test_examples/04_1auto_save.gitlab.md +++ b/tests/results/test_examples/04_1auto_save.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: no # An auto save variable +variable: no ```
diff --git a/tests/results/test_examples/04_1auto_save.html b/tests/results/test_examples/04_1auto_save.html index 1868d01be..b3c56d2b1 100644 --- a/tests/results/test_examples/04_1auto_save.html +++ b/tests/results/test_examples/04_1auto_save.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: no                  # An auto save variable
\ No newline at end of file +
variable: no
\ No newline at end of file diff --git a/tests/results/test_examples/04_1auto_save.sh b/tests/results/test_examples/04_1auto_save.sh index 18d7c6d47..c6c3d91f1 100644 --- a/tests/results/test_examples/04_1auto_save.sh +++ b/tests/results/test_examples/04_1auto_save.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: no # An auto save variable  +variable: no  diff --git a/tests/results/test_examples/04_1auto_save_and_calculated.adoc b/tests/results/test_examples/04_1auto_save_and_calculated.adoc index c21773477..b0649cf87 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_examples/04_1auto_save_and_calculated.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: no # A first variable -var2: no # A second variable +var1: no +var2: no ---- diff --git a/tests/results/test_examples/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_examples/04_1auto_save_and_calculated.gitlab.md index df2699760..57e887e51 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated.gitlab.md +++ b/tests/results/test_examples/04_1auto_save_and_calculated.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: no # A first variable -var2: no # A second variable +var1: no +var2: no ```
diff --git a/tests/results/test_examples/04_1auto_save_and_calculated.html b/tests/results/test_examples/04_1auto_save_and_calculated.html index 803e886fe..0bba0e4e2 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated.html +++ b/tests/results/test_examples/04_1auto_save_and_calculated.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: no                      # A first variable
-var2: no                      # A second variable
\ No newline at end of file +
var1: no
+var2: no
\ No newline at end of file diff --git a/tests/results/test_examples/04_1auto_save_and_calculated.sh b/tests/results/test_examples/04_1auto_save_and_calculated.sh index bb113a148..33012cfc8 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated.sh +++ b/tests/results/test_examples/04_1auto_save_and_calculated.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: no # A first variable  -var2: no # A second variable  +var1: no  +var2: no  diff --git a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.adoc index 2e404667a..30c37977f 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: no # A first variable -var2: yes # A second variable +var1: no +var2: yes ---- diff --git a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.gitlab.md index 4f29c33ab..011c4ea45 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.gitlab.md +++ b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: no # A first variable -var2: yes # A second variable +var1: no +var2: yes ```
diff --git a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.html b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.html index c7a87b186..13a9c6291 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.html +++ b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: no                      # A first variable
-var2: yes                     # A second variable
\ No newline at end of file +
var1: no
+var2: yes
\ No newline at end of file diff --git a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.sh index c1a41f406..bc583db32 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: no # A first variable  -var2: yes # A second variable  +var1: no  +var2: yes  diff --git a/tests/results/test_examples/04_1default_calculation_hidden.adoc b/tests/results/test_examples/04_1default_calculation_hidden.adoc index 7db54e630..7051a5229 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var2: example # A second variable +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: value # A first variable -var2: example # A second variable -var3: value # A third variable +var1: value +var2: example +var3: value ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden.gitlab.md index 1bbb0b033..5fc8b5ffd 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var2: example # A second variable +var2: example ```
@@ -10,9 +10,9 @@ var2: example # A second variable ```yaml --- -var1: value # A first variable -var2: example # A second variable -var3: value # A third variable +var1: value +var2: example +var3: value ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden.html b/tests/results/test_examples/04_1default_calculation_hidden.html index 45501fac6..bfc90961c 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden.html +++ b/tests/results/test_examples/04_1default_calculation_hidden.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var2: example                 # A second variable

Example with all variables modifiable

+
var2: example

Example with all variables modifiable

-
var1: value                   # A first variable
-var2: example                 # A second variable
-var3: value                   # A third variable
\ No newline at end of file +
var1: value
+var2: example
+var3: value
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden.sh b/tests/results/test_examples/04_1default_calculation_hidden.sh index cdf08a5f8..999cf1f14 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var2: example # A second variable  - - +var2: example  Example with all variables modifiable - ---  -var1: value # A first variable  -var2: example # A second variable  -var3: value # A third variable  +var1: value  +var2: example  +var3: value  diff --git a/tests/results/test_examples/04_1default_calculation_hidden_2.adoc b/tests/results/test_examples/04_1default_calculation_hidden_2.adoc index 9328594f9..9ff6ac63d 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden_2.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var2: example # A second variable +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: value # A first variable -var2: example # A second variable -var3: example # A third variable +var1: value +var2: example +var3: example ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden_2.gitlab.md index 230302760..f76959f5b 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_2.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var2: example # A second variable +var2: example ```
@@ -10,9 +10,9 @@ var2: example # A second variable ```yaml --- -var1: value # A first variable -var2: example # A second variable -var3: example # A third variable +var1: value +var2: example +var3: example ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden_2.html b/tests/results/test_examples/04_1default_calculation_hidden_2.html index b686ae1e3..f4f986f21 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_2.html +++ b/tests/results/test_examples/04_1default_calculation_hidden_2.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var2: example                 # A second variable

Example with all variables modifiable

+
var2: example

Example with all variables modifiable

-
var1: value                   # A first variable
-var2: example                 # A second variable
-var3: example                 # A third variable
\ No newline at end of file +
var1: value
+var2: example
+var3: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden_2.sh b/tests/results/test_examples/04_1default_calculation_hidden_2.sh index 1d7cfff10..78cff0bab 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden_2.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var2: example # A second variable  - - +var2: example  Example with all variables modifiable - ---  -var1: value # A first variable  -var2: example # A second variable  -var3: example # A third variable  +var1: value  +var2: example  +var3: example  diff --git a/tests/results/test_examples/04_1default_calculation_hidden_3.adoc b/tests/results/test_examples/04_1default_calculation_hidden_3.adoc index e5bb0c28d..6f157234c 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden_3.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var3: value # A third variable +var3: value ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden_3.gitlab.md index c4d6c96b3..2c1261cd0 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_3.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_3.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var3: value # A third variable +var3: value ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden_3.html b/tests/results/test_examples/04_1default_calculation_hidden_3.html index 3d029b031..bb14a232d 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_3.html +++ b/tests/results/test_examples/04_1default_calculation_hidden_3.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var3: value                   # A third variable
\ No newline at end of file +
var3: value
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden_3.sh b/tests/results/test_examples/04_1default_calculation_hidden_3.sh index 0b2a532b8..e371f5858 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden_3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var3: value # A third variable  +var3: value  diff --git a/tests/results/test_examples/04_1default_calculation_hidden_4.adoc b/tests/results/test_examples/04_1default_calculation_hidden_4.adoc index efc332ec4..c38814294 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden_4.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var2: example # A second variable +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -var2: example # A second variable -var3: value # A third variable +var2: example +var3: value ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden_4.gitlab.md index 632e53b51..e80d79009 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_4.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_4.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var2: example # A second variable +var2: example ```
@@ -10,8 +10,8 @@ var2: example # A second variable ```yaml --- -var2: example # A second variable -var3: value # A third variable +var2: example +var3: value ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden_4.html b/tests/results/test_examples/04_1default_calculation_hidden_4.html index 79427eb57..bb4a58a3c 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_4.html +++ b/tests/results/test_examples/04_1default_calculation_hidden_4.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var2: example                 # A second variable

Example with all variables modifiable

+
var2: example

Example with all variables modifiable

-
var2: example                 # A second variable
-var3: value                   # A third variable
\ No newline at end of file +
var2: example
+var3: value
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden_4.sh b/tests/results/test_examples/04_1default_calculation_hidden_4.sh index dfacb7f93..af64c6869 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden_4.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var2: example # A second variable  - - +var2: example  Example with all variables modifiable - ---  -var2: example # A second variable  -var3: value # A third variable  +var2: example  +var3: value  diff --git a/tests/results/test_examples/04_1default_calculation_hidden_5.adoc b/tests/results/test_examples/04_1default_calculation_hidden_5.adoc index ae312bab2..b984f1233 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden_5.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var3: example # A third variable +var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: value # A first variable -var3: example # A third variable +var1: value +var3: example ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden_5.gitlab.md index 538896da0..bf315d053 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_5.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_5.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var3: example # A third variable +var3: example ```
@@ -10,8 +10,8 @@ var3: example # A third variable ```yaml --- -var1: value # A first variable -var3: example # A third variable +var1: value +var3: example ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden_5.html b/tests/results/test_examples/04_1default_calculation_hidden_5.html index 4fa8b6b94..15dccfa97 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_5.html +++ b/tests/results/test_examples/04_1default_calculation_hidden_5.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var3: example                 # A third variable

Example with all variables modifiable

+
var3: example

Example with all variables modifiable

-
var1: value                   # A first variable
-var3: example                 # A third variable
\ No newline at end of file +
var1: value
+var3: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden_5.sh b/tests/results/test_examples/04_1default_calculation_hidden_5.sh index de0098a3a..30e7572aa 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden_5.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var3: example # A third variable  - - +var3: example  Example with all variables modifiable - ---  -var1: value # A first variable  -var3: example # A third variable  +var1: value  +var3: example  diff --git a/tests/results/test_examples/04_1default_calculation_hidden_6.adoc b/tests/results/test_examples/04_1default_calculation_hidden_6.adoc index ae312bab2..b984f1233 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_examples/04_1default_calculation_hidden_6.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var3: example # A third variable +var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: value # A first variable -var3: example # A third variable +var1: value +var3: example ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_examples/04_1default_calculation_hidden_6.gitlab.md index 538896da0..bf315d053 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_6.gitlab.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_6.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var3: example # A third variable +var3: example ```
@@ -10,8 +10,8 @@ var3: example # A third variable ```yaml --- -var1: value # A first variable -var3: example # A third variable +var1: value +var3: example ```
diff --git a/tests/results/test_examples/04_1default_calculation_hidden_6.html b/tests/results/test_examples/04_1default_calculation_hidden_6.html index 4fa8b6b94..15dccfa97 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_6.html +++ b/tests/results/test_examples/04_1default_calculation_hidden_6.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
var3: example                 # A third variable

Example with all variables modifiable

+
var3: example

Example with all variables modifiable

-
var1: value                   # A first variable
-var3: example                 # A third variable
\ No newline at end of file +
var1: value
+var3: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_1default_calculation_hidden_6.sh b/tests/results/test_examples/04_1default_calculation_hidden_6.sh index de0098a3a..30e7572aa 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_examples/04_1default_calculation_hidden_6.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -var3: example # A third variable  - - +var3: example  Example with all variables modifiable - ---  -var1: value # A first variable  -var3: example # A third variable  +var1: value  +var3: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_boolean.adoc b/tests/results/test_examples/04_5disabled_calculation_boolean.adoc index 4d1295870..f06f5ff2d 100644 --- a/tests/results/test_examples/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_boolean.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -variable1: example # A first variable -variable2: example # A seconde variable +variable1: example +variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: no # A conditional variable -variable1: example # A first variable -variable2: example # A seconde variable +condition: no +variable1: example +variable2: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_boolean.gitlab.md index c686933d8..ae241b65c 100644 --- a/tests/results/test_examples/04_5disabled_calculation_boolean.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_boolean.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -variable1: example # A first variable -variable2: example # A seconde variable +variable1: example +variable2: example ```
@@ -11,9 +11,9 @@ variable2: example # A seconde variable ```yaml --- -condition: no # A conditional variable -variable1: example # A first variable -variable2: example # A seconde variable +condition: no +variable1: example +variable2: example ```
diff --git a/tests/results/test_examples/04_5disabled_calculation_boolean.html b/tests/results/test_examples/04_5disabled_calculation_boolean.html index 121730068..8e504c234 100644 --- a/tests/results/test_examples/04_5disabled_calculation_boolean.html +++ b/tests/results/test_examples/04_5disabled_calculation_boolean.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
variable1: example            # A first variable
-variable2: example            # A seconde variable

Example with all variables modifiable

+
variable1: example
+variable2: example

Example with all variables modifiable

-
condition: no                 # A conditional variable
-variable1: example            # A first variable
-variable2: example            # A seconde variable
\ No newline at end of file +
condition: no
+variable1: example
+variable2: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_boolean.sh b/tests/results/test_examples/04_5disabled_calculation_boolean.sh index 3690caa5a..276ffed25 100644 --- a/tests/results/test_examples/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_examples/04_5disabled_calculation_boolean.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -variable1: example # A first variable  -variable2: example # A seconde variable  - - +variable1: example  +variable2: example  Example with all variables modifiable - ---  -condition: no # A conditional variable  -variable1: example # A first variable  -variable2: example # A seconde variable  +condition: no  +variable1: example  +variable2: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_optional.adoc b/tests/results/test_examples/04_5disabled_calculation_optional.adoc index be2eca8cc..32a99ed51 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_optional.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -condition: no # A condition -var1: example # A first variable -var2: example # A second variable +condition: no +var1: example +var2: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_optional.gitlab.md index 6fc2a4066..7e76c91c6 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_optional.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -condition: no # A condition -var1: example # A first variable -var2: example # A second variable +condition: no +var1: example +var2: example ```
diff --git a/tests/results/test_examples/04_5disabled_calculation_optional.html b/tests/results/test_examples/04_5disabled_calculation_optional.html index 0e298c198..5ed447cfa 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional.html +++ b/tests/results/test_examples/04_5disabled_calculation_optional.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
condition: no                 # A condition
-var1: example                 # A first variable
-var2: example                 # A second variable
\ No newline at end of file +
condition: no
+var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_optional.sh b/tests/results/test_examples/04_5disabled_calculation_optional.sh index 574fb3c92..67d293534 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional.sh +++ b/tests/results/test_examples/04_5disabled_calculation_optional.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -condition: no # A condition  -var1: example # A first variable  -var2: example # A second variable  +condition: no  +var1: example  +var2: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_optional_default.adoc b/tests/results/test_examples/04_5disabled_calculation_optional_default.adoc index be1f012f6..706dcd74f 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_optional_default.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -condition: false # A condition -var1: example # A first variable -var3: example # A second variable -var4: example # A forth variable +condition: false +var1: example +var3: example +var4: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_optional_default.gitlab.md index a79752c3b..5e59c0bd1 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional_default.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_optional_default.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -condition: false # A condition -var1: example # A first variable -var3: example # A second variable -var4: example # A forth variable +condition: false +var1: example +var3: example +var4: example ```
diff --git a/tests/results/test_examples/04_5disabled_calculation_optional_default.html b/tests/results/test_examples/04_5disabled_calculation_optional_default.html index 91b0489ad..cb638983c 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional_default.html +++ b/tests/results/test_examples/04_5disabled_calculation_optional_default.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
condition: false              # A condition
-var1: example                 # A first variable
-var3: example                 # A second variable
-var4: example                 # A forth variable
\ No newline at end of file +
condition: false
+var1: example
+var3: example
+var4: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_optional_default.sh b/tests/results/test_examples/04_5disabled_calculation_optional_default.sh index debe5e807..88679f401 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_examples/04_5disabled_calculation_optional_default.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -condition: false # A condition  -var1: example # A first variable  -var3: example # A second variable  -var4: example # A forth variable  +condition: false  +var1: example  +var3: example  +var4: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable.adoc b/tests/results/test_examples/04_5disabled_calculation_variable.adoc index 02833100b..78d0bb0e0 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: false # A condition -variable: example # A variable +condition: false +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable.gitlab.md index 3506df937..4b3e824a9 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ```
@@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: false # A condition -variable: example # A variable +condition: false +variable: example ```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable.html b/tests/results/test_examples/04_5disabled_calculation_variable.html index dce8b4559..2b83db43f 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: false              # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: false
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable.sh b/tests/results/test_examples/04_5disabled_calculation_variable.sh index 158f495c8..f6f33a96e 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: false # A condition  -variable: example # A variable  +condition: false  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable10.adoc b/tests/results/test_examples/04_5disabled_calculation_variable10.adoc index dfa55cdf2..4138ae615 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable10.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: true # A condition -variable: example # A variable +condition: true +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable10.gitlab.md index 9d937f764..e818e46ab 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable10.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable10.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ```
@@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: true # A condition -variable: example # A variable +condition: true +variable: example ```
diff --git a/tests/results/test_examples/04_5disabled_calculation_variable10.html b/tests/results/test_examples/04_5disabled_calculation_variable10.html index d4753062d..8d05e013a 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable10.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable10.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: true               # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: true
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable10.sh b/tests/results/test_examples/04_5disabled_calculation_variable10.sh index 8fdf6a542..d3d34ed04 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable10.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: true # A condition  -variable: example # A variable  +condition: true  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable2.adoc b/tests/results/test_examples/04_5disabled_calculation_variable2.adoc index dfa55cdf2..4138ae615 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable2.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: true # A condition -variable: example # A variable +condition: true +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable2.gitlab.md index 9d937f764..e818e46ab 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable2.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: true # A condition -variable: example # A variable +condition: true +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable2.html b/tests/results/test_examples/04_5disabled_calculation_variable2.html index d4753062d..8d05e013a 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable2.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable2.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: true               # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: true
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable2.sh b/tests/results/test_examples/04_5disabled_calculation_variable2.sh index 8fdf6a542..d3d34ed04 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: true # A condition  -variable: example # A variable  +condition: true  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable3.adoc b/tests/results/test_examples/04_5disabled_calculation_variable3.adoc index b422fe94b..7ef41d626 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable3.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: yes # A condition -variable: example # A variable +condition: yes +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable3.gitlab.md index 85b3ff0f4..4a07bacd7 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable3.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable3.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: yes # A condition -variable: example # A variable +condition: yes +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable3.html b/tests/results/test_examples/04_5disabled_calculation_variable3.html index d8c693c3c..dd7050fb3 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable3.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable3.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: yes                # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: yes
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable3.sh b/tests/results/test_examples/04_5disabled_calculation_variable3.sh index 65f75b32a..1865849d5 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable3.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: yes # A condition  -variable: example # A variable  +condition: yes  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable4.adoc b/tests/results/test_examples/04_5disabled_calculation_variable4.adoc index b422fe94b..7ef41d626 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable4.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: yes # A condition -variable: example # A variable +condition: yes +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable4.gitlab.md index 85b3ff0f4..4a07bacd7 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable4.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable4.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: yes # A condition -variable: example # A variable +condition: yes +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable4.html b/tests/results/test_examples/04_5disabled_calculation_variable4.html index d8c693c3c..dd7050fb3 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable4.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable4.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: yes                # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: yes
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable4.sh b/tests/results/test_examples/04_5disabled_calculation_variable4.sh index 65f75b32a..1865849d5 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable4.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: yes # A condition  -variable: example # A variable  +condition: yes  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable5.adoc b/tests/results/test_examples/04_5disabled_calculation_variable5.adoc index 987846d7d..00b89a3cd 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable5.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -variable: example # A variable +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable5.gitlab.md index 926191636..02b023c5a 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable5.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable5.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,7 +10,7 @@ variable: example # A variable ```yaml --- -variable: example # A variable +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable5.html b/tests/results/test_examples/04_5disabled_calculation_variable5.html index dc4f270fa..80ba60ece 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable5.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable5.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
variable: example             # A variable
\ No newline at end of file +
variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable5.sh b/tests/results/test_examples/04_5disabled_calculation_variable5.sh index bb8d93db8..40358d795 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable5.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -variable: example # A variable  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable6.adoc b/tests/results/test_examples/04_5disabled_calculation_variable6.adoc index 987846d7d..00b89a3cd 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable6.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -variable: example # A variable +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable6.gitlab.md index 926191636..02b023c5a 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable6.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable6.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,7 +10,7 @@ variable: example # A variable ```yaml --- -variable: example # A variable +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable6.html b/tests/results/test_examples/04_5disabled_calculation_variable6.html index dc4f270fa..80ba60ece 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable6.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable6.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
variable: example             # A variable
\ No newline at end of file +
variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable6.sh b/tests/results/test_examples/04_5disabled_calculation_variable6.sh index bb8d93db8..40358d795 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable6.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -variable: example # A variable  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable7.adoc b/tests/results/test_examples/04_5disabled_calculation_variable7.adoc index 02833100b..78d0bb0e0 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable7.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: false # A condition -variable: example # A variable +condition: false +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable7.gitlab.md index 3506df937..4b3e824a9 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable7.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable7.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: false # A condition -variable: example # A variable +condition: false +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable7.html b/tests/results/test_examples/04_5disabled_calculation_variable7.html index dce8b4559..2b83db43f 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable7.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable7.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: false              # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: false
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable7.sh b/tests/results/test_examples/04_5disabled_calculation_variable7.sh index 158f495c8..f6f33a96e 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable7.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: false # A condition  -variable: example # A variable  +condition: false  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable9.adoc b/tests/results/test_examples/04_5disabled_calculation_variable9.adoc index 987846d7d..00b89a3cd 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable9.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -variable: example # A variable +variable: example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable9.gitlab.md index 926191636..02b023c5a 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable9.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable9.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,7 +10,7 @@ variable: example # A variable ```yaml --- -variable: example # A variable +variable: example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable9.html b/tests/results/test_examples/04_5disabled_calculation_variable9.html index dc4f270fa..80ba60ece 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable9.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable9.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
variable: example             # A variable
\ No newline at end of file +
variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable9.sh b/tests/results/test_examples/04_5disabled_calculation_variable9.sh index bb8d93db8..40358d795 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable9.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -variable: example # A variable  +variable: example  diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_examples/04_5disabled_calculation_variable_multi.adoc index 0859d5edb..74e3afa6c 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -variable: # A variable +variable: - example ---- == Example with all variables modifiable @@ -11,7 +11,7 @@ variable: # A variable [,yaml] ---- --- -condition: false # A condition -variable: # A variable +condition: false +variable: - example ---- diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_examples/04_5disabled_calculation_variable_multi.gitlab.md index 66064e0e7..867bf3819 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable_multi.gitlab.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - example ``` @@ -11,8 +11,8 @@ variable: # A variable ```yaml --- -condition: false # A condition -variable: # A variable +condition: false +variable: - example ``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi.html b/tests/results/test_examples/04_5disabled_calculation_variable_multi.html index 77f8f33f1..cf46ff6c3 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable_multi.html +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
variable:                     # A variable
+
variable:
   - example

Example with all variables modifiable

-
condition: false              # A condition
-variable:                     # A variable
+
condition: false
+variable:
   - example
\ No newline at end of file diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi.sh b/tests/results/test_examples/04_5disabled_calculation_variable_multi.sh index 5d067256d..65ad2def0 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -variable: # A variable  +variable:   - example  - - Example with all variables modifiable - ---  -condition: false # A condition  -variable: # A variable  +condition: false  +variable:   - example  diff --git a/tests/results/test_examples/04_5validators.adoc b/tests/results/test_examples/04_5validators.adoc index fd830df56..0d498496b 100644 --- a/tests/results/test_examples/04_5validators.adoc +++ b/tests/results/test_examples/04_5validators.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -int: 42 # An integer +int: 42 ---- == Example with all variables modifiable [,yaml] ---- --- -int: 42 # An integer +int: 42 ---- diff --git a/tests/results/test_examples/04_5validators.gitlab.md b/tests/results/test_examples/04_5validators.gitlab.md index 4e09a3845..a4740a762 100644 --- a/tests/results/test_examples/04_5validators.gitlab.md +++ b/tests/results/test_examples/04_5validators.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -int: 42 # An integer +int: 42 ``` @@ -10,7 +10,7 @@ int: 42 # An integer ```yaml --- -int: 42 # An integer +int: 42 ``` diff --git a/tests/results/test_examples/04_5validators.html b/tests/results/test_examples/04_5validators.html index 8dc8a07c9..641e08373 100644 --- a/tests/results/test_examples/04_5validators.html +++ b/tests/results/test_examples/04_5validators.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
int: 42                       # An integer

Example with all variables modifiable

+
int: 42

Example with all variables modifiable

-
int: 42                       # An integer
\ No newline at end of file +
int: 42
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators.sh b/tests/results/test_examples/04_5validators.sh index 987406e67..7347e503c 100644 --- a/tests/results/test_examples/04_5validators.sh +++ b/tests/results/test_examples/04_5validators.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -int: 42 # An integer  - - +int: 42  Example with all variables modifiable - ---  -int: 42 # An integer  +int: 42  diff --git a/tests/results/test_examples/04_5validators_differ.adoc b/tests/results/test_examples/04_5validators_differ.adoc index 128868349..448619003 100644 --- a/tests/results/test_examples/04_5validators_differ.adoc +++ b/tests/results/test_examples/04_5validators_differ.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: another_value # A first variable -var2: no # A second variable +var1: another_value +var2: no ---- diff --git a/tests/results/test_examples/04_5validators_differ.gitlab.md b/tests/results/test_examples/04_5validators_differ.gitlab.md index 536a35d58..95de12557 100644 --- a/tests/results/test_examples/04_5validators_differ.gitlab.md +++ b/tests/results/test_examples/04_5validators_differ.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: another_value # A first variable -var2: no # A second variable +var1: another_value +var2: no ``` diff --git a/tests/results/test_examples/04_5validators_differ.html b/tests/results/test_examples/04_5validators_differ.html index 48adfe8cf..d468fd499 100644 --- a/tests/results/test_examples/04_5validators_differ.html +++ b/tests/results/test_examples/04_5validators_differ.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: another_value           # A first variable
-var2: no                      # A second variable
\ No newline at end of file +
var1: another_value
+var2: no
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_differ.sh b/tests/results/test_examples/04_5validators_differ.sh index 28a656c4a..530cc00d6 100644 --- a/tests/results/test_examples/04_5validators_differ.sh +++ b/tests/results/test_examples/04_5validators_differ.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: another_value # A first variable  -var2: no # A second variable  +var1: another_value  +var2: no  diff --git a/tests/results/test_examples/04_5validators_multi.adoc b/tests/results/test_examples/04_5validators_multi.adoc index 3db3eb5aa..b357d4db4 100644 --- a/tests/results/test_examples/04_5validators_multi.adoc +++ b/tests/results/test_examples/04_5validators_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: # A second variable +var1: - no - yes ---- diff --git a/tests/results/test_examples/04_5validators_multi.gitlab.md b/tests/results/test_examples/04_5validators_multi.gitlab.md index 79a9be561..1c9e888c9 100644 --- a/tests/results/test_examples/04_5validators_multi.gitlab.md +++ b/tests/results/test_examples/04_5validators_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A second variable +var1: - no - yes ``` diff --git a/tests/results/test_examples/04_5validators_multi.html b/tests/results/test_examples/04_5validators_multi.html index 87e3cf6fa..f27c7b3fa 100644 --- a/tests/results/test_examples/04_5validators_multi.html +++ b/tests/results/test_examples/04_5validators_multi.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - no
   - yes
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_multi.sh b/tests/results/test_examples/04_5validators_multi.sh index 2b0ada4e3..bda63cbfa 100644 --- a/tests/results/test_examples/04_5validators_multi.sh +++ b/tests/results/test_examples/04_5validators_multi.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - no   - yes  diff --git a/tests/results/test_examples/04_5validators_multi2.adoc b/tests/results/test_examples/04_5validators_multi2.adoc index 967cf584b..f193e9740 100644 --- a/tests/results/test_examples/04_5validators_multi2.adoc +++ b/tests/results/test_examples/04_5validators_multi2.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: # A second variable +var1: - val1 - val2 ---- diff --git a/tests/results/test_examples/04_5validators_multi2.gitlab.md b/tests/results/test_examples/04_5validators_multi2.gitlab.md index 4b2b983c7..6be4578fe 100644 --- a/tests/results/test_examples/04_5validators_multi2.gitlab.md +++ b/tests/results/test_examples/04_5validators_multi2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A second variable +var1: - val1 - val2 ``` diff --git a/tests/results/test_examples/04_5validators_multi2.html b/tests/results/test_examples/04_5validators_multi2.html index 5e60e26fc..65406c757 100644 --- a/tests/results/test_examples/04_5validators_multi2.html +++ b/tests/results/test_examples/04_5validators_multi2.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - val1
   - val2
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_multi2.sh b/tests/results/test_examples/04_5validators_multi2.sh index c68349d21..561e2c669 100644 --- a/tests/results/test_examples/04_5validators_multi2.sh +++ b/tests/results/test_examples/04_5validators_multi2.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - val1   - val2  diff --git a/tests/results/test_examples/04_5validators_multi3.adoc b/tests/results/test_examples/04_5validators_multi3.adoc index 29ff0455b..c0f6d1096 100644 --- a/tests/results/test_examples/04_5validators_multi3.adoc +++ b/tests/results/test_examples/04_5validators_multi3.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: # A second variable +var1: - 0 ---- diff --git a/tests/results/test_examples/04_5validators_multi3.gitlab.md b/tests/results/test_examples/04_5validators_multi3.gitlab.md index fbac47ab2..29336c963 100644 --- a/tests/results/test_examples/04_5validators_multi3.gitlab.md +++ b/tests/results/test_examples/04_5validators_multi3.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A second variable +var1: - 0 ``` diff --git a/tests/results/test_examples/04_5validators_multi3.html b/tests/results/test_examples/04_5validators_multi3.html index a3c15fea3..73b270345 100644 --- a/tests/results/test_examples/04_5validators_multi3.html +++ b/tests/results/test_examples/04_5validators_multi3.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1:                         # A second variable
+
var1:
   - 0
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_multi3.sh b/tests/results/test_examples/04_5validators_multi3.sh index d5528c7ae..bfe3b886e 100644 --- a/tests/results/test_examples/04_5validators_multi3.sh +++ b/tests/results/test_examples/04_5validators_multi3.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: # A second variable  +var1:   - 0  diff --git a/tests/results/test_examples/04_5validators_warnings.adoc b/tests/results/test_examples/04_5validators_warnings.adoc index e3640e059..9861760bf 100644 --- a/tests/results/test_examples/04_5validators_warnings.adoc +++ b/tests/results/test_examples/04_5validators_warnings.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -int: 1000 # An integer +int: 1000 ---- diff --git a/tests/results/test_examples/04_5validators_warnings.gitlab.md b/tests/results/test_examples/04_5validators_warnings.gitlab.md index 84a2a1eba..3969df68a 100644 --- a/tests/results/test_examples/04_5validators_warnings.gitlab.md +++ b/tests/results/test_examples/04_5validators_warnings.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -int: 1000 # An integer +int: 1000 ``` diff --git a/tests/results/test_examples/04_5validators_warnings.html b/tests/results/test_examples/04_5validators_warnings.html index 4a5d2bdad..55e705227 100644 --- a/tests/results/test_examples/04_5validators_warnings.html +++ b/tests/results/test_examples/04_5validators_warnings.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
int: 1000                     # An integer
\ No newline at end of file +
int: 1000
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_warnings.sh b/tests/results/test_examples/04_5validators_warnings.sh index 155d1c25f..3b3878327 100644 --- a/tests/results/test_examples/04_5validators_warnings.sh +++ b/tests/results/test_examples/04_5validators_warnings.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -int: 1000 # An integer  +int: 1000  diff --git a/tests/results/test_examples/04_5validators_warnings_all.adoc b/tests/results/test_examples/04_5validators_warnings_all.adoc index e3640e059..9861760bf 100644 --- a/tests/results/test_examples/04_5validators_warnings_all.adoc +++ b/tests/results/test_examples/04_5validators_warnings_all.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -int: 1000 # An integer +int: 1000 ---- diff --git a/tests/results/test_examples/04_5validators_warnings_all.gitlab.md b/tests/results/test_examples/04_5validators_warnings_all.gitlab.md index 84a2a1eba..3969df68a 100644 --- a/tests/results/test_examples/04_5validators_warnings_all.gitlab.md +++ b/tests/results/test_examples/04_5validators_warnings_all.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -int: 1000 # An integer +int: 1000 ``` diff --git a/tests/results/test_examples/04_5validators_warnings_all.html b/tests/results/test_examples/04_5validators_warnings_all.html index 4a5d2bdad..55e705227 100644 --- a/tests/results/test_examples/04_5validators_warnings_all.html +++ b/tests/results/test_examples/04_5validators_warnings_all.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
int: 1000                     # An integer
\ No newline at end of file +
int: 1000
\ No newline at end of file diff --git a/tests/results/test_examples/04_5validators_warnings_all.sh b/tests/results/test_examples/04_5validators_warnings_all.sh index 155d1c25f..3b3878327 100644 --- a/tests/results/test_examples/04_5validators_warnings_all.sh +++ b/tests/results/test_examples/04_5validators_warnings_all.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -int: 1000 # An integer  +int: 1000  diff --git a/tests/results/test_examples/05_0multi_not_uniq.adoc b/tests/results/test_examples/05_0multi_not_uniq.adoc index 467a6f257..9c997da8a 100644 --- a/tests/results/test_examples/05_0multi_not_uniq.adoc +++ b/tests/results/test_examples/05_0multi_not_uniq.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: # A variable +var1: - non ---- diff --git a/tests/results/test_examples/05_0multi_not_uniq.gitlab.md b/tests/results/test_examples/05_0multi_not_uniq.gitlab.md index a6e276776..f7d601fb2 100644 --- a/tests/results/test_examples/05_0multi_not_uniq.gitlab.md +++ b/tests/results/test_examples/05_0multi_not_uniq.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var1: # A variable +var1: - non ``` diff --git a/tests/results/test_examples/05_0multi_not_uniq.html b/tests/results/test_examples/05_0multi_not_uniq.html index 0be8ade0b..264610584 100644 --- a/tests/results/test_examples/05_0multi_not_uniq.html +++ b/tests/results/test_examples/05_0multi_not_uniq.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1:                         # A variable
+
var1:
   - non
\ No newline at end of file diff --git a/tests/results/test_examples/05_0multi_not_uniq.sh b/tests/results/test_examples/05_0multi_not_uniq.sh index bb70f5360..57651f261 100644 --- a/tests/results/test_examples/05_0multi_not_uniq.sh +++ b/tests/results/test_examples/05_0multi_not_uniq.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: # A variable  +var1:   - non  diff --git a/tests/results/test_examples/05_0multi_uniq.adoc b/tests/results/test_examples/05_0multi_uniq.adoc index d6c0e6b6e..cdc647e9f 100644 --- a/tests/results/test_examples/05_0multi_uniq.adoc +++ b/tests/results/test_examples/05_0multi_uniq.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - non ---- diff --git a/tests/results/test_examples/05_0multi_uniq.gitlab.md b/tests/results/test_examples/05_0multi_uniq.gitlab.md index aba6f8a18..25712fb62 100644 --- a/tests/results/test_examples/05_0multi_uniq.gitlab.md +++ b/tests/results/test_examples/05_0multi_uniq.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - non ``` diff --git a/tests/results/test_examples/05_0multi_uniq.html b/tests/results/test_examples/05_0multi_uniq.html index 919cb6e8d..c15269899 100644 --- a/tests/results/test_examples/05_0multi_uniq.html +++ b/tests/results/test_examples/05_0multi_uniq.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - non
\ No newline at end of file diff --git a/tests/results/test_examples/05_0multi_uniq.sh b/tests/results/test_examples/05_0multi_uniq.sh index df0c92375..242e45e9f 100644 --- a/tests/results/test_examples/05_0multi_uniq.sh +++ b/tests/results/test_examples/05_0multi_uniq.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - non  diff --git a/tests/results/test_examples/12_1auto_save_expert.adoc b/tests/results/test_examples/12_1auto_save_expert.adoc index 994ce9e57..19245ef5d 100644 --- a/tests/results/test_examples/12_1auto_save_expert.adoc +++ b/tests/results/test_examples/12_1auto_save_expert.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: no # A variable +var: no ---- diff --git a/tests/results/test_examples/12_1auto_save_expert.gitlab.md b/tests/results/test_examples/12_1auto_save_expert.gitlab.md index 4ab3592a0..9d35a2912 100644 --- a/tests/results/test_examples/12_1auto_save_expert.gitlab.md +++ b/tests/results/test_examples/12_1auto_save_expert.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: no # A variable +var: no ``` diff --git a/tests/results/test_examples/12_1auto_save_expert.html b/tests/results/test_examples/12_1auto_save_expert.html index 48180d697..f524cd478 100644 --- a/tests/results/test_examples/12_1auto_save_expert.html +++ b/tests/results/test_examples/12_1auto_save_expert.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: no                       # A variable
\ No newline at end of file +
var: no
\ No newline at end of file diff --git a/tests/results/test_examples/12_1auto_save_expert.sh b/tests/results/test_examples/12_1auto_save_expert.sh index d141dffef..df0bf932c 100644 --- a/tests/results/test_examples/12_1auto_save_expert.sh +++ b/tests/results/test_examples/12_1auto_save_expert.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: no # A variable  +var: no  diff --git a/tests/results/test_examples/16_0redefine_description.adoc b/tests/results/test_examples/16_0redefine_description.adoc index ed61b3cc6..a8a3c4c13 100644 --- a/tests/results/test_examples/16_0redefine_description.adoc +++ b/tests/results/test_examples/16_0redefine_description.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var: example # Redefined +var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: example # Redefined +var: example ---- diff --git a/tests/results/test_examples/16_0redefine_description.gitlab.md b/tests/results/test_examples/16_0redefine_description.gitlab.md index 1f2c41b4c..c58018c57 100644 --- a/tests/results/test_examples/16_0redefine_description.gitlab.md +++ b/tests/results/test_examples/16_0redefine_description.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: example # Redefined +var: example ``` @@ -10,7 +10,7 @@ var: example # Redefined ```yaml --- -var: example # Redefined +var: example ``` diff --git a/tests/results/test_examples/16_0redefine_description.html b/tests/results/test_examples/16_0redefine_description.html index 3d3200094..9d7083bfa 100644 --- a/tests/results/test_examples/16_0redefine_description.html +++ b/tests/results/test_examples/16_0redefine_description.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
var: example                  # Redefined

Example with all variables modifiable

+
var: example

Example with all variables modifiable

-
var: example                  # Redefined
\ No newline at end of file +
var: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_0redefine_description.sh b/tests/results/test_examples/16_0redefine_description.sh index e4cffcc99..2a4f2743f 100644 --- a/tests/results/test_examples/16_0redefine_description.sh +++ b/tests/results/test_examples/16_0redefine_description.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -var: example # Redefined  - - +var: example  Example with all variables modifiable - ---  -var: example # Redefined  +var: example  diff --git a/tests/results/test_examples/16_2family_redefine_calculation.adoc b/tests/results/test_examples/16_2family_redefine_calculation.adoc index 7d8d0bd1a..a5aaf52ce 100644 --- a/tests/results/test_examples/16_2family_redefine_calculation.adoc +++ b/tests/results/test_examples/16_2family_redefine_calculation.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -family: # family +family: var1: example ---- == Example with all variables modifiable @@ -11,6 +11,6 @@ family: # family [,yaml] ---- --- -family: # family +family: var1: example ---- diff --git a/tests/results/test_examples/16_2family_redefine_calculation.gitlab.md b/tests/results/test_examples/16_2family_redefine_calculation.gitlab.md index dbe2b6163..a19b8647f 100644 --- a/tests/results/test_examples/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test_examples/16_2family_redefine_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -family: # family +family: var1: example ``` @@ -11,7 +11,7 @@ family: # family ```yaml --- -family: # family +family: var1: example ``` diff --git a/tests/results/test_examples/16_2family_redefine_calculation.html b/tests/results/test_examples/16_2family_redefine_calculation.html index 07f02d16b..603ee8b52 100644 --- a/tests/results/test_examples/16_2family_redefine_calculation.html +++ b/tests/results/test_examples/16_2family_redefine_calculation.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
family:                       # family
+
family:
   var1: example

Example with all variables modifiable

-
family:                       # family
+
family:
   var1: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_2family_redefine_calculation.sh b/tests/results/test_examples/16_2family_redefine_calculation.sh index 430d55425..343fac9ff 100644 --- a/tests/results/test_examples/16_2family_redefine_calculation.sh +++ b/tests/results/test_examples/16_2family_redefine_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -family: # family  +family:   var1: example  - - Example with all variables modifiable - ---  -family: # family  +family:   var1: example  diff --git a/tests/results/test_examples/16_3family_empty_at_ends.adoc b/tests/results/test_examples/16_3family_empty_at_ends.adoc index 7d8d0bd1a..a5aaf52ce 100644 --- a/tests/results/test_examples/16_3family_empty_at_ends.adoc +++ b/tests/results/test_examples/16_3family_empty_at_ends.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -family: # family +family: var1: example ---- == Example with all variables modifiable @@ -11,6 +11,6 @@ family: # family [,yaml] ---- --- -family: # family +family: var1: example ---- diff --git a/tests/results/test_examples/16_3family_empty_at_ends.gitlab.md b/tests/results/test_examples/16_3family_empty_at_ends.gitlab.md index dbe2b6163..a19b8647f 100644 --- a/tests/results/test_examples/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test_examples/16_3family_empty_at_ends.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -family: # family +family: var1: example ``` @@ -11,7 +11,7 @@ family: # family ```yaml --- -family: # family +family: var1: example ``` diff --git a/tests/results/test_examples/16_3family_empty_at_ends.html b/tests/results/test_examples/16_3family_empty_at_ends.html index 07f02d16b..603ee8b52 100644 --- a/tests/results/test_examples/16_3family_empty_at_ends.html +++ b/tests/results/test_examples/16_3family_empty_at_ends.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
family:                       # family
+
family:
   var1: example

Example with all variables modifiable

-
family:                       # family
+
family:
   var1: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_3family_empty_at_ends.sh b/tests/results/test_examples/16_3family_empty_at_ends.sh index 430d55425..343fac9ff 100644 --- a/tests/results/test_examples/16_3family_empty_at_ends.sh +++ b/tests/results/test_examples/16_3family_empty_at_ends.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -family: # family  +family:   var1: example  - - Example with all variables modifiable - ---  -family: # family  +family:   var1: example  diff --git a/tests/results/test_examples/16_5exists_nonexists.adoc b/tests/results/test_examples/16_5exists_nonexists.adoc index e3d50fcb5..30c37977f 100644 --- a/tests/results/test_examples/16_5exists_nonexists.adoc +++ b/tests/results/test_examples/16_5exists_nonexists.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -var1: no # A variable -var2: yes # A new variable +var1: no +var2: yes ---- diff --git a/tests/results/test_examples/16_5exists_nonexists.gitlab.md b/tests/results/test_examples/16_5exists_nonexists.gitlab.md index 6901c07f4..011c4ea45 100644 --- a/tests/results/test_examples/16_5exists_nonexists.gitlab.md +++ b/tests/results/test_examples/16_5exists_nonexists.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -var1: no # A variable -var2: yes # A new variable +var1: no +var2: yes ``` diff --git a/tests/results/test_examples/16_5exists_nonexists.html b/tests/results/test_examples/16_5exists_nonexists.html index 0113c1ee4..13a9c6291 100644 --- a/tests/results/test_examples/16_5exists_nonexists.html +++ b/tests/results/test_examples/16_5exists_nonexists.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
var1: no                      # A variable
-var2: yes                     # A new variable
\ No newline at end of file +
var1: no
+var2: yes
\ No newline at end of file diff --git a/tests/results/test_examples/16_5exists_nonexists.sh b/tests/results/test_examples/16_5exists_nonexists.sh index b7bba5e17..bc583db32 100644 --- a/tests/results/test_examples/16_5exists_nonexists.sh +++ b/tests/results/test_examples/16_5exists_nonexists.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -var1: no # A variable  -var2: yes # A new variable  +var1: no  +var2: yes  diff --git a/tests/results/test_examples/16_5redefine_calculation.adoc b/tests/results/test_examples/16_5redefine_calculation.adoc index 71ed957f7..e99f902d8 100644 --- a/tests/results/test_examples/16_5redefine_calculation.adoc +++ b/tests/results/test_examples/16_5redefine_calculation.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: yes # A variable +variable: yes ---- diff --git a/tests/results/test_examples/16_5redefine_calculation.gitlab.md b/tests/results/test_examples/16_5redefine_calculation.gitlab.md index f0995a6d5..1b33c0e8f 100644 --- a/tests/results/test_examples/16_5redefine_calculation.gitlab.md +++ b/tests/results/test_examples/16_5redefine_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: yes # A variable +variable: yes ``` diff --git a/tests/results/test_examples/16_5redefine_calculation.html b/tests/results/test_examples/16_5redefine_calculation.html index 32cc5de5c..72e497196 100644 --- a/tests/results/test_examples/16_5redefine_calculation.html +++ b/tests/results/test_examples/16_5redefine_calculation.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: yes                 # A variable
\ No newline at end of file +
variable: yes
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_calculation.sh b/tests/results/test_examples/16_5redefine_calculation.sh index 7452063fc..ec73cbf2b 100644 --- a/tests/results/test_examples/16_5redefine_calculation.sh +++ b/tests/results/test_examples/16_5redefine_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: yes # A variable  +variable: yes  diff --git a/tests/results/test_examples/16_5redefine_choice.adoc b/tests/results/test_examples/16_5redefine_choice.adoc index 804d186f8..95af1dc4e 100644 --- a/tests/results/test_examples/16_5redefine_choice.adoc +++ b/tests/results/test_examples/16_5redefine_choice.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -variable: a_choice # A variable +variable: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -variable: a_choice # A variable +variable: a_choice ---- diff --git a/tests/results/test_examples/16_5redefine_choice.gitlab.md b/tests/results/test_examples/16_5redefine_choice.gitlab.md index 0d99bc981..3dde86122 100644 --- a/tests/results/test_examples/16_5redefine_choice.gitlab.md +++ b/tests/results/test_examples/16_5redefine_choice.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: a_choice # A variable +variable: a_choice ``` @@ -10,7 +10,7 @@ variable: a_choice # A variable ```yaml --- -variable: a_choice # A variable +variable: a_choice ``` diff --git a/tests/results/test_examples/16_5redefine_choice.html b/tests/results/test_examples/16_5redefine_choice.html index c0e5ebca0..6b8433557 100644 --- a/tests/results/test_examples/16_5redefine_choice.html +++ b/tests/results/test_examples/16_5redefine_choice.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
variable: a_choice            # A variable

Example with all variables modifiable

+
variable: a_choice

Example with all variables modifiable

-
variable: a_choice            # A variable
\ No newline at end of file +
variable: a_choice
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_choice.sh b/tests/results/test_examples/16_5redefine_choice.sh index 4f8c90dc6..c83c74b8c 100644 --- a/tests/results/test_examples/16_5redefine_choice.sh +++ b/tests/results/test_examples/16_5redefine_choice.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -variable: a_choice # A variable  - - +variable: a_choice  Example with all variables modifiable - ---  -variable: a_choice # A variable  +variable: a_choice  diff --git a/tests/results/test_examples/16_5redefine_default.adoc b/tests/results/test_examples/16_5redefine_default.adoc index 71ed957f7..e99f902d8 100644 --- a/tests/results/test_examples/16_5redefine_default.adoc +++ b/tests/results/test_examples/16_5redefine_default.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -variable: yes # A variable +variable: yes ---- diff --git a/tests/results/test_examples/16_5redefine_default.gitlab.md b/tests/results/test_examples/16_5redefine_default.gitlab.md index f0995a6d5..1b33c0e8f 100644 --- a/tests/results/test_examples/16_5redefine_default.gitlab.md +++ b/tests/results/test_examples/16_5redefine_default.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: yes # A variable +variable: yes ``` diff --git a/tests/results/test_examples/16_5redefine_default.html b/tests/results/test_examples/16_5redefine_default.html index 32cc5de5c..72e497196 100644 --- a/tests/results/test_examples/16_5redefine_default.html +++ b/tests/results/test_examples/16_5redefine_default.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
variable: yes                 # A variable
\ No newline at end of file +
variable: yes
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_default.sh b/tests/results/test_examples/16_5redefine_default.sh index 7452063fc..ec73cbf2b 100644 --- a/tests/results/test_examples/16_5redefine_default.sh +++ b/tests/results/test_examples/16_5redefine_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -variable: yes # A variable  +variable: yes  diff --git a/tests/results/test_examples/16_5redefine_default_calculation.adoc b/tests/results/test_examples/16_5redefine_default_calculation.adoc index 987846d7d..00b89a3cd 100644 --- a/tests/results/test_examples/16_5redefine_default_calculation.adoc +++ b/tests/results/test_examples/16_5redefine_default_calculation.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -variable: example # A variable +variable: example ---- diff --git a/tests/results/test_examples/16_5redefine_default_calculation.gitlab.md b/tests/results/test_examples/16_5redefine_default_calculation.gitlab.md index 926191636..02b023c5a 100644 --- a/tests/results/test_examples/16_5redefine_default_calculation.gitlab.md +++ b/tests/results/test_examples/16_5redefine_default_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,7 +10,7 @@ variable: example # A variable ```yaml --- -variable: example # A variable +variable: example ``` diff --git a/tests/results/test_examples/16_5redefine_default_calculation.html b/tests/results/test_examples/16_5redefine_default_calculation.html index dc4f270fa..80ba60ece 100644 --- a/tests/results/test_examples/16_5redefine_default_calculation.html +++ b/tests/results/test_examples/16_5redefine_default_calculation.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
variable: example             # A variable
\ No newline at end of file +
variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_default_calculation.sh b/tests/results/test_examples/16_5redefine_default_calculation.sh index bb8d93db8..40358d795 100644 --- a/tests/results/test_examples/16_5redefine_default_calculation.sh +++ b/tests/results/test_examples/16_5redefine_default_calculation.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -variable: example # A variable  +variable: example  diff --git a/tests/results/test_examples/16_5redefine_family.adoc b/tests/results/test_examples/16_5redefine_family.adoc index 514b394eb..8b0ecf87a 100644 --- a/tests/results/test_examples/16_5redefine_family.adoc +++ b/tests/results/test_examples/16_5redefine_family.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -family: # New description - variable: example # A variable +family: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -family: # New description - variable: example # A variable +family: + variable: example ---- diff --git a/tests/results/test_examples/16_5redefine_family.gitlab.md b/tests/results/test_examples/16_5redefine_family.gitlab.md index eeb0f10b3..c5ed18219 100644 --- a/tests/results/test_examples/16_5redefine_family.gitlab.md +++ b/tests/results/test_examples/16_5redefine_family.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -family: # New description - variable: example # A variable +family: + variable: example ``` @@ -11,8 +11,8 @@ family: # New description ```yaml --- -family: # New description - variable: example # A variable +family: + variable: example ``` diff --git a/tests/results/test_examples/16_5redefine_family.html b/tests/results/test_examples/16_5redefine_family.html index ee99fa0eb..ec6640382 100644 --- a/tests/results/test_examples/16_5redefine_family.html +++ b/tests/results/test_examples/16_5redefine_family.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
family:                       # New description
-  variable: example           # A variable

Example with all variables modifiable

+
family:
+  variable: example

Example with all variables modifiable

-
family:                       # New description
-  variable: example           # A variable
\ No newline at end of file +
family:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_family.sh b/tests/results/test_examples/16_5redefine_family.sh index 6db64800d..f69aa8b21 100644 --- a/tests/results/test_examples/16_5redefine_family.sh +++ b/tests/results/test_examples/16_5redefine_family.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -family: # New description  - variable: example # A variable  - - +family:  + variable: example  Example with all variables modifiable - ---  -family: # New description  - variable: example # A variable  +family:  + variable: example  diff --git a/tests/results/test_examples/16_5redefine_help.adoc b/tests/results/test_examples/16_5redefine_help.adoc index dca92ab87..8b0ecf87a 100644 --- a/tests/results/test_examples/16_5redefine_help.adoc +++ b/tests/results/test_examples/16_5redefine_help.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -family: # A family - variable: example # Redefine help +family: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -family: # A family - variable: example # Redefine help +family: + variable: example ---- diff --git a/tests/results/test_examples/16_5redefine_help.gitlab.md b/tests/results/test_examples/16_5redefine_help.gitlab.md index 92314501a..c5ed18219 100644 --- a/tests/results/test_examples/16_5redefine_help.gitlab.md +++ b/tests/results/test_examples/16_5redefine_help.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -family: # A family - variable: example # Redefine help +family: + variable: example ``` @@ -11,8 +11,8 @@ family: # A family ```yaml --- -family: # A family - variable: example # Redefine help +family: + variable: example ``` diff --git a/tests/results/test_examples/16_5redefine_help.html b/tests/results/test_examples/16_5redefine_help.html index b81db3af0..ec6640382 100644 --- a/tests/results/test_examples/16_5redefine_help.html +++ b/tests/results/test_examples/16_5redefine_help.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
family:                       # A family
-  variable: example           # Redefine help

Example with all variables modifiable

+
family:
+  variable: example

Example with all variables modifiable

-
family:                       # A family
-  variable: example           # Redefine help
\ No newline at end of file +
family:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_help.sh b/tests/results/test_examples/16_5redefine_help.sh index 13874de20..f69aa8b21 100644 --- a/tests/results/test_examples/16_5redefine_help.sh +++ b/tests/results/test_examples/16_5redefine_help.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -family: # A family  - variable: example # Redefine help  - - +family:  + variable: example  Example with all variables modifiable - ---  -family: # A family  - variable: example # Redefine help  +family:  + variable: example  diff --git a/tests/results/test_examples/16_5redefine_multi.adoc b/tests/results/test_examples/16_5redefine_multi.adoc index d6c0e6b6e..cdc647e9f 100644 --- a/tests/results/test_examples/16_5redefine_multi.adoc +++ b/tests/results/test_examples/16_5redefine_multi.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -variable: # A variable +variable: - non ---- diff --git a/tests/results/test_examples/16_5redefine_multi.gitlab.md b/tests/results/test_examples/16_5redefine_multi.gitlab.md index aba6f8a18..25712fb62 100644 --- a/tests/results/test_examples/16_5redefine_multi.gitlab.md +++ b/tests/results/test_examples/16_5redefine_multi.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: # A variable +variable: - non ``` diff --git a/tests/results/test_examples/16_5redefine_multi.html b/tests/results/test_examples/16_5redefine_multi.html index 919cb6e8d..c15269899 100644 --- a/tests/results/test_examples/16_5redefine_multi.html +++ b/tests/results/test_examples/16_5redefine_multi.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
variable:                     # A variable
+
variable:
   - non
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_multi.sh b/tests/results/test_examples/16_5redefine_multi.sh index df0c92375..242e45e9f 100644 --- a/tests/results/test_examples/16_5redefine_multi.sh +++ b/tests/results/test_examples/16_5redefine_multi.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -variable: # A variable  +variable:   - non  diff --git a/tests/results/test_examples/16_5redefine_remove_disable_calculation.adoc b/tests/results/test_examples/16_5redefine_remove_disable_calculation.adoc index 1392d5c04..097b0e3a2 100644 --- a/tests/results/test_examples/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_examples/16_5redefine_remove_disable_calculation.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -variable: example # A variable +variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: no # A condition -variable: example # A variable +condition: no +variable: example ---- diff --git a/tests/results/test_examples/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_examples/16_5redefine_remove_disable_calculation.gitlab.md index 67574762e..f3bbbcb82 100644 --- a/tests/results/test_examples/16_5redefine_remove_disable_calculation.gitlab.md +++ b/tests/results/test_examples/16_5redefine_remove_disable_calculation.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -variable: example # A variable +variable: example ``` @@ -10,8 +10,8 @@ variable: example # A variable ```yaml --- -condition: no # A condition -variable: example # A variable +condition: no +variable: example ``` diff --git a/tests/results/test_examples/16_5redefine_remove_disable_calculation.html b/tests/results/test_examples/16_5redefine_remove_disable_calculation.html index 50204bd52..ce127a8f2 100644 --- a/tests/results/test_examples/16_5redefine_remove_disable_calculation.html +++ b/tests/results/test_examples/16_5redefine_remove_disable_calculation.html @@ -1,6 +1,6 @@

Example with mandatory variables not filled in

-
variable: example             # A variable

Example with all variables modifiable

+
variable: example

Example with all variables modifiable

-
condition: no                 # A condition
-variable: example             # A variable
\ No newline at end of file +
condition: no
+variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_5redefine_remove_disable_calculation.sh b/tests/results/test_examples/16_5redefine_remove_disable_calculation.sh index c7326ae63..8900d9575 100644 --- a/tests/results/test_examples/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_examples/16_5redefine_remove_disable_calculation.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  - - +variable: example  Example with all variables modifiable - ---  -condition: no # A condition  -variable: example # A variable  +condition: no  +variable: example  diff --git a/tests/results/test_examples/16_5test_redefine.adoc b/tests/results/test_examples/16_5test_redefine.adoc index 5fffdc3fe..350c9bda3 100644 --- a/tests/results/test_examples/16_5test_redefine.adoc +++ b/tests/results/test_examples/16_5test_redefine.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var3: example # A third variable +var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: test1 # A first variable -var2: test1 # A second variable -var3: example # A third variable +var1: test1 +var2: test1 +var3: example ---- diff --git a/tests/results/test_examples/16_5test_redefine.gitlab.md b/tests/results/test_examples/16_5test_redefine.gitlab.md index d660df27f..d1014bb37 100644 --- a/tests/results/test_examples/16_5test_redefine.gitlab.md +++ b/tests/results/test_examples/16_5test_redefine.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var3: example # A third variable +var3: example ``` @@ -10,9 +10,9 @@ var3: example # A third variable ```yaml --- -var1: test1 # A first variable -var2: test1 # A second variable -var3: example # A third variable +var1: test1 +var2: test1 +var3: example ``` diff --git a/tests/results/test_examples/16_5test_redefine.html b/tests/results/test_examples/16_5test_redefine.html index 91847b5b8..99e1060b4 100644 --- a/tests/results/test_examples/16_5test_redefine.html +++ b/tests/results/test_examples/16_5test_redefine.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
var3: example                 # A third variable

Example with all variables modifiable

+
var3: example

Example with all variables modifiable

-
var1: test1                   # A first variable
-var2: test1                   # A second variable
-var3: example                 # A third variable
\ No newline at end of file +
var1: test1
+var2: test1
+var3: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_5test_redefine.sh b/tests/results/test_examples/16_5test_redefine.sh index e86fa34df..544927e69 100644 --- a/tests/results/test_examples/16_5test_redefine.sh +++ b/tests/results/test_examples/16_5test_redefine.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -var3: example # A third variable  - - +var3: example  Example with all variables modifiable - ---  -var1: test1 # A first variable  -var2: test1 # A second variable  -var3: example # A third variable  +var1: test1  +var2: test1  +var3: example  diff --git a/tests/results/test_examples/16_6choice_redefine.adoc b/tests/results/test_examples/16_6choice_redefine.adoc index 87e7a5cf4..06030f8eb 100644 --- a/tests/results/test_examples/16_6choice_redefine.adoc +++ b/tests/results/test_examples/16_6choice_redefine.adoc @@ -3,5 +3,5 @@ [,yaml] ---- --- -var: c # A choice +var: c ---- diff --git a/tests/results/test_examples/16_6choice_redefine.gitlab.md b/tests/results/test_examples/16_6choice_redefine.gitlab.md index 44b5e419f..04fa9cc63 100644 --- a/tests/results/test_examples/16_6choice_redefine.gitlab.md +++ b/tests/results/test_examples/16_6choice_redefine.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: c # A choice +var: c ``` diff --git a/tests/results/test_examples/16_6choice_redefine.html b/tests/results/test_examples/16_6choice_redefine.html index 3457124a9..55adaf3b6 100644 --- a/tests/results/test_examples/16_6choice_redefine.html +++ b/tests/results/test_examples/16_6choice_redefine.html @@ -1,3 +1,3 @@

Example with all variables modifiable

-
var: c                        # A choice
\ No newline at end of file +
var: c
\ No newline at end of file diff --git a/tests/results/test_examples/16_6choice_redefine.sh b/tests/results/test_examples/16_6choice_redefine.sh index b02e1b0fe..0db3bd265 100644 --- a/tests/results/test_examples/16_6choice_redefine.sh +++ b/tests/results/test_examples/16_6choice_redefine.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  -var: c # A choice  +var: c  diff --git a/tests/results/test_examples/16_6exists_redefine_family.adoc b/tests/results/test_examples/16_6exists_redefine_family.adoc index 5de40deba..948607e03 100644 --- a/tests/results/test_examples/16_6exists_redefine_family.adoc +++ b/tests/results/test_examples/16_6exists_redefine_family.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -family1: # New description - variable1: example # A variable -family2: # A second family - variable2: example # A second variable +family1: + variable1: example +family2: + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -family1: # New description - variable1: example # A variable -family2: # A second family - variable2: example # A second variable +family1: + variable1: example +family2: + variable2: example ---- diff --git a/tests/results/test_examples/16_6exists_redefine_family.gitlab.md b/tests/results/test_examples/16_6exists_redefine_family.gitlab.md index da217d213..2240ad8ca 100644 --- a/tests/results/test_examples/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test_examples/16_6exists_redefine_family.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -family1: # New description - variable1: example # A variable -family2: # A second family - variable2: example # A second variable +family1: + variable1: example +family2: + variable2: example ``` @@ -13,10 +13,10 @@ family2: # A second family ```yaml --- -family1: # New description - variable1: example # A variable -family2: # A second family - variable2: example # A second variable +family1: + variable1: example +family2: + variable2: example ``` diff --git a/tests/results/test_examples/16_6exists_redefine_family.html b/tests/results/test_examples/16_6exists_redefine_family.html index 6be462c41..b077e3f8e 100644 --- a/tests/results/test_examples/16_6exists_redefine_family.html +++ b/tests/results/test_examples/16_6exists_redefine_family.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
family1:                      # New description
-  variable1: example          # A variable
-family2:                      # A second family
-  variable2: example          # A second variable

Example with all variables modifiable

+
family1:
+  variable1: example
+family2:
+  variable2: example

Example with all variables modifiable

-
family1:                      # New description
-  variable1: example          # A variable
-family2:                      # A second family
-  variable2: example          # A second variable
\ No newline at end of file +
family1:
+  variable1: example
+family2:
+  variable2: example
\ No newline at end of file diff --git a/tests/results/test_examples/16_6exists_redefine_family.sh b/tests/results/test_examples/16_6exists_redefine_family.sh index 9e26d9329..358dd5e01 100644 --- a/tests/results/test_examples/16_6exists_redefine_family.sh +++ b/tests/results/test_examples/16_6exists_redefine_family.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -family1: # New description  - variable1: example # A variable  -family2: # A second family  - variable2: example # A second variable  - - +family1:  + variable1: example  +family2:  + variable2: example  Example with all variables modifiable - ---  -family1: # New description  - variable1: example # A variable  -family2: # A second family  - variable2: example # A second variable  +family1:  + variable1: example  +family2:  + variable2: example  diff --git a/tests/results/test_examples/16exists_exists.adoc b/tests/results/test_examples/16exists_exists.adoc index 7a2cc4592..a8a3c4c13 100644 --- a/tests/results/test_examples/16exists_exists.adoc +++ b/tests/results/test_examples/16exists_exists.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var: example # Description +var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: example # Description +var: example ---- diff --git a/tests/results/test_examples/16exists_exists.gitlab.md b/tests/results/test_examples/16exists_exists.gitlab.md index 58f572c0a..c58018c57 100644 --- a/tests/results/test_examples/16exists_exists.gitlab.md +++ b/tests/results/test_examples/16exists_exists.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: example # Description +var: example ``` @@ -10,7 +10,7 @@ var: example # Description ```yaml --- -var: example # Description +var: example ``` diff --git a/tests/results/test_examples/16exists_exists.html b/tests/results/test_examples/16exists_exists.html index 85428e8c7..9d7083bfa 100644 --- a/tests/results/test_examples/16exists_exists.html +++ b/tests/results/test_examples/16exists_exists.html @@ -1,5 +1,5 @@

Example with mandatory variables not filled in

-
var: example                  # Description

Example with all variables modifiable

+
var: example

Example with all variables modifiable

-
var: example                  # Description
\ No newline at end of file +
var: example
\ No newline at end of file diff --git a/tests/results/test_examples/16exists_exists.sh b/tests/results/test_examples/16exists_exists.sh index fe55b36e6..2a4f2743f 100644 --- a/tests/results/test_examples/16exists_exists.sh +++ b/tests/results/test_examples/16exists_exists.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  -var: example # Description  - - +var: example  Example with all variables modifiable - ---  -var: example # Description  +var: example  diff --git a/tests/results/test_examples/20_0family_append.adoc b/tests/results/test_examples/20_0family_append.adoc index 5f7968579..3ddb7b96f 100644 --- a/tests/results/test_examples/20_0family_append.adoc +++ b/tests/results/test_examples/20_0family_append.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -family: # A family - var1: example # The first variable - var2: example # The second variable +family: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -family: # A family - var1: example # The first variable - var2: example # The second variable +family: + var1: example + var2: example ---- diff --git a/tests/results/test_examples/20_0family_append.gitlab.md b/tests/results/test_examples/20_0family_append.gitlab.md index 7025bb50b..1c2af8ac3 100644 --- a/tests/results/test_examples/20_0family_append.gitlab.md +++ b/tests/results/test_examples/20_0family_append.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # A family - var1: example # The first variable - var2: example # The second variable +family: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ family: # A family ```yaml --- -family: # A family - var1: example # The first variable - var2: example # The second variable +family: + var1: example + var2: example ``` diff --git a/tests/results/test_examples/20_0family_append.html b/tests/results/test_examples/20_0family_append.html index 0235406c6..aa0a23a39 100644 --- a/tests/results/test_examples/20_0family_append.html +++ b/tests/results/test_examples/20_0family_append.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
family:                       # A family
-  var1: example               # The first variable
-  var2: example               # The second variable

Example with all variables modifiable

+
family:
+  var1: example
+  var2: example

Example with all variables modifiable

-
family:                       # A family
-  var1: example               # The first variable
-  var2: example               # The second variable
\ No newline at end of file +
family:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_0family_append.sh b/tests/results/test_examples/20_0family_append.sh index 104c7899c..657a75478 100644 --- a/tests/results/test_examples/20_0family_append.sh +++ b/tests/results/test_examples/20_0family_append.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -family: # A family  - var1: example # The first variable  - var2: example # The second variable  - - +family:  + var1: example  + var2: example  Example with all variables modifiable - ---  -family: # A family  - var1: example # The first variable  - var2: example # The second variable  +family:  + var1: example  + var2: example  diff --git a/tests/results/test_examples/20_0multi_family.adoc b/tests/results/test_examples/20_0multi_family.adoc index 8baf87c35..2743d71b5 100644 --- a/tests/results/test_examples/20_0multi_family.adoc +++ b/tests/results/test_examples/20_0multi_family.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ---- diff --git a/tests/results/test_examples/20_0multi_family.gitlab.md b/tests/results/test_examples/20_0multi_family.gitlab.md index c495c518e..4e6b46948 100644 --- a/tests/results/test_examples/20_0multi_family.gitlab.md +++ b/tests/results/test_examples/20_0multi_family.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ``` diff --git a/tests/results/test_examples/20_0multi_family.html b/tests/results/test_examples/20_0multi_family.html index 8f4acffe5..f9fec8f42 100644 --- a/tests/results/test_examples/20_0multi_family.html +++ b/tests/results/test_examples/20_0multi_family.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
family:                       # A family
-  subfamily:                  # A sub family
-    variable: example         # A variable
\ No newline at end of file +
family:
+  subfamily:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_0multi_family.sh b/tests/results/test_examples/20_0multi_family.sh index 79c1fba0f..3603337d1 100644 --- a/tests/results/test_examples/20_0multi_family.sh +++ b/tests/results/test_examples/20_0multi_family.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -family: # A family  - subfamily: # A sub family  - variable: example # A variable  +family:  + subfamily:  + variable: example  diff --git a/tests/results/test_examples/20_0multi_family_basic.adoc b/tests/results/test_examples/20_0multi_family_basic.adoc index 77219b9d7..5e1b96700 100644 --- a/tests/results/test_examples/20_0multi_family_basic.adoc +++ b/tests/results/test_examples/20_0multi_family_basic.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ---- diff --git a/tests/results/test_examples/20_0multi_family_basic.gitlab.md b/tests/results/test_examples/20_0multi_family_basic.gitlab.md index 9b56195b2..6e1cd6a20 100644 --- a/tests/results/test_examples/20_0multi_family_basic.gitlab.md +++ b/tests/results/test_examples/20_0multi_family_basic.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ``` @@ -12,9 +12,9 @@ family: # A family ```yaml --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ``` diff --git a/tests/results/test_examples/20_0multi_family_basic.html b/tests/results/test_examples/20_0multi_family_basic.html index 948d42be7..6f3a76ee9 100644 --- a/tests/results/test_examples/20_0multi_family_basic.html +++ b/tests/results/test_examples/20_0multi_family_basic.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
family:                       # A family
-  subfamily:                  # A sub family
-    variable: example         # A variable

Example with all variables modifiable

+
family:
+  subfamily:
+    variable: example

Example with all variables modifiable

-
family:                       # A family
-  subfamily:                  # A sub family
-    variable: example         # A variable
\ No newline at end of file +
family:
+  subfamily:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_0multi_family_basic.sh b/tests/results/test_examples/20_0multi_family_basic.sh index 8c0934f5e..14ef3ad23 100644 --- a/tests/results/test_examples/20_0multi_family_basic.sh +++ b/tests/results/test_examples/20_0multi_family_basic.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -family: # A family  - subfamily: # A sub family  - variable: example # A variable  - - +family:  + subfamily:  + variable: example  Example with all variables modifiable - ---  -family: # A family  - subfamily: # A sub family  - variable: example # A variable  +family:  + subfamily:  + variable: example  diff --git a/tests/results/test_examples/20_0multi_family_expert.adoc b/tests/results/test_examples/20_0multi_family_expert.adoc index 8baf87c35..2743d71b5 100644 --- a/tests/results/test_examples/20_0multi_family_expert.adoc +++ b/tests/results/test_examples/20_0multi_family_expert.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ---- diff --git a/tests/results/test_examples/20_0multi_family_expert.gitlab.md b/tests/results/test_examples/20_0multi_family_expert.gitlab.md index c495c518e..4e6b46948 100644 --- a/tests/results/test_examples/20_0multi_family_expert.gitlab.md +++ b/tests/results/test_examples/20_0multi_family_expert.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # A family - subfamily: # A sub family - variable: example # A variable +family: + subfamily: + variable: example ``` diff --git a/tests/results/test_examples/20_0multi_family_expert.html b/tests/results/test_examples/20_0multi_family_expert.html index 8f4acffe5..f9fec8f42 100644 --- a/tests/results/test_examples/20_0multi_family_expert.html +++ b/tests/results/test_examples/20_0multi_family_expert.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
family:                       # A family
-  subfamily:                  # A sub family
-    variable: example         # A variable
\ No newline at end of file +
family:
+  subfamily:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_0multi_family_expert.sh b/tests/results/test_examples/20_0multi_family_expert.sh index 79c1fba0f..3603337d1 100644 --- a/tests/results/test_examples/20_0multi_family_expert.sh +++ b/tests/results/test_examples/20_0multi_family_expert.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -family: # A family  - subfamily: # A sub family  - variable: example # A variable  +family:  + subfamily:  + variable: example  diff --git a/tests/results/test_examples/20_0multi_family_order.adoc b/tests/results/test_examples/20_0multi_family_order.adoc index aa6bf3540..805165e3d 100644 --- a/tests/results/test_examples/20_0multi_family_order.adoc +++ b/tests/results/test_examples/20_0multi_family_order.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -variable: example # A variable -family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +variable: example +family: + variable1: example + subfamily: + variable: example + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -variable: example # A variable -family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +variable: example +family: + variable1: example + subfamily: + variable: example + variable2: example ---- diff --git a/tests/results/test_examples/20_0multi_family_order.gitlab.md b/tests/results/test_examples/20_0multi_family_order.gitlab.md index a914de16a..f486e6c9a 100644 --- a/tests/results/test_examples/20_0multi_family_order.gitlab.md +++ b/tests/results/test_examples/20_0multi_family_order.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -variable: example # A variable -family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +variable: example +family: + variable1: example + subfamily: + variable: example + variable2: example ``` @@ -15,12 +15,12 @@ family: # A family ```yaml --- -variable: example # A variable -family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +variable: example +family: + variable1: example + subfamily: + variable: example + variable2: example ``` diff --git a/tests/results/test_examples/20_0multi_family_order.html b/tests/results/test_examples/20_0multi_family_order.html index fedf6ef11..b825daaa6 100644 --- a/tests/results/test_examples/20_0multi_family_order.html +++ b/tests/results/test_examples/20_0multi_family_order.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
variable: example             # A variable
-family:                       # A family
-  variable1: example          # A first variable
-  subfamily:                  # A sub family
-    variable: example         # A variable
-  variable2: example          # A second variable

Example with all variables modifiable

+
variable: example
+family:
+  variable1: example
+  subfamily:
+    variable: example
+  variable2: example

Example with all variables modifiable

-
variable: example             # A variable
-family:                       # A family
-  variable1: example          # A first variable
-  subfamily:                  # A sub family
-    variable: example         # A variable
-  variable2: example          # A second variable
\ No newline at end of file +
variable: example
+family:
+  variable1: example
+  subfamily:
+    variable: example
+  variable2: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_0multi_family_order.sh b/tests/results/test_examples/20_0multi_family_order.sh index 380359ee8..285156ee0 100644 --- a/tests/results/test_examples/20_0multi_family_order.sh +++ b/tests/results/test_examples/20_0multi_family_order.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -variable: example # A variable  -family: # A family  - variable1: example # A first variable  - subfamily: # A sub family  - variable: example # A variable  - variable2: example # A second variable  - - +variable: example  +family:  + variable1: example  + subfamily:  + variable: example  + variable2: example  Example with all variables modifiable - ---  -variable: example # A variable  -family: # A family  - variable1: example # A first variable  - subfamily: # A sub family  - variable: example # A variable  - variable2: example # A second variable  +variable: example  +family:  + variable1: example  + subfamily:  + variable: example  + variable2: example  diff --git a/tests/results/test_examples/20_0validators_differ_redefine.adoc b/tests/results/test_examples/20_0validators_differ_redefine.adoc index e052e1a14..98211accf 100644 --- a/tests/results/test_examples/20_0validators_differ_redefine.adoc +++ b/tests/results/test_examples/20_0validators_differ_redefine.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var1: no # A first variable -var2: no # A second variable -var3: yes # A third variable +var1: no +var2: no +var3: yes ---- diff --git a/tests/results/test_examples/20_0validators_differ_redefine.gitlab.md b/tests/results/test_examples/20_0validators_differ_redefine.gitlab.md index 0bb1f9c1f..651d9ff18 100644 --- a/tests/results/test_examples/20_0validators_differ_redefine.gitlab.md +++ b/tests/results/test_examples/20_0validators_differ_redefine.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: no # A first variable -var2: no # A second variable -var3: yes # A third variable +var1: no +var2: no +var3: yes ``` diff --git a/tests/results/test_examples/20_0validators_differ_redefine.html b/tests/results/test_examples/20_0validators_differ_redefine.html index 8c027946d..2d9d14108 100644 --- a/tests/results/test_examples/20_0validators_differ_redefine.html +++ b/tests/results/test_examples/20_0validators_differ_redefine.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var1: no                      # A first variable
-var2: no                      # A second variable
-var3: yes                     # A third variable
\ No newline at end of file +
var1: no
+var2: no
+var3: yes
\ No newline at end of file diff --git a/tests/results/test_examples/20_0validators_differ_redefine.sh b/tests/results/test_examples/20_0validators_differ_redefine.sh index 4e5cf3cfe..823636174 100644 --- a/tests/results/test_examples/20_0validators_differ_redefine.sh +++ b/tests/results/test_examples/20_0validators_differ_redefine.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var1: no # A first variable  -var2: no # A second variable  -var3: yes # A third variable  +var1: no  +var2: no  +var3: yes  diff --git a/tests/results/test_examples/20_2family_looks_like_dynamic.adoc b/tests/results/test_examples/20_2family_looks_like_dynamic.adoc index dd9aaacd8..d2280b524 100644 --- a/tests/results/test_examples/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_examples/20_2family_looks_like_dynamic.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -my_family: # my_family +my_family: dynamic: - val1 - val2 - var: true # A variable + var: true ---- diff --git a/tests/results/test_examples/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_examples/20_2family_looks_like_dynamic.gitlab.md index d2204ca6f..14d28cae2 100644 --- a/tests/results/test_examples/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test_examples/20_2family_looks_like_dynamic.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -my_family: # my_family +my_family: dynamic: - val1 - val2 - var: true # A variable + var: true ``` diff --git a/tests/results/test_examples/20_2family_looks_like_dynamic.html b/tests/results/test_examples/20_2family_looks_like_dynamic.html index 757d9b10d..d718fe831 100644 --- a/tests/results/test_examples/20_2family_looks_like_dynamic.html +++ b/tests/results/test_examples/20_2family_looks_like_dynamic.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
my_family:                    # my_family
+
my_family:
   dynamic:
     - val1
     - val2
-  var: true                   # A variable
\ No newline at end of file + var: true
\ No newline at end of file diff --git a/tests/results/test_examples/20_2family_looks_like_dynamic.sh b/tests/results/test_examples/20_2family_looks_like_dynamic.sh index d0f35d930..b88b8f622 100644 --- a/tests/results/test_examples/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_examples/20_2family_looks_like_dynamic.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -my_family: # my_family  +my_family:   dynamic:   - val1   - val2  - var: true # A variable  + var: true  diff --git a/tests/results/test_examples/20_2family_looks_like_variable.adoc b/tests/results/test_examples/20_2family_looks_like_variable.adoc index 9cd94f96f..883d8f2c2 100644 --- a/tests/results/test_examples/20_2family_looks_like_variable.adoc +++ b/tests/results/test_examples/20_2family_looks_like_variable.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -my_family: # my_family +my_family: default: true ---- diff --git a/tests/results/test_examples/20_2family_looks_like_variable.gitlab.md b/tests/results/test_examples/20_2family_looks_like_variable.gitlab.md index 39c48bc65..5a15e77c6 100644 --- a/tests/results/test_examples/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test_examples/20_2family_looks_like_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -my_family: # my_family +my_family: default: true ``` diff --git a/tests/results/test_examples/20_2family_looks_like_variable.html b/tests/results/test_examples/20_2family_looks_like_variable.html index ad773a517..a0397dd2d 100644 --- a/tests/results/test_examples/20_2family_looks_like_variable.html +++ b/tests/results/test_examples/20_2family_looks_like_variable.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
my_family:                    # my_family
+
my_family:
   default: true
\ No newline at end of file diff --git a/tests/results/test_examples/20_2family_looks_like_variable.sh b/tests/results/test_examples/20_2family_looks_like_variable.sh index a9f9cab5a..3ab278525 100644 --- a/tests/results/test_examples/20_2family_looks_like_variable.sh +++ b/tests/results/test_examples/20_2family_looks_like_variable.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -my_family: # my_family  +my_family:   default: true  diff --git a/tests/results/test_examples/20_9default_information_parent.adoc b/tests/results/test_examples/20_9default_information_parent.adoc index 861908770..cc39bb787 100644 --- a/tests/results/test_examples/20_9default_information_parent.adoc +++ b/tests/results/test_examples/20_9default_information_parent.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -family: # family - var1: example # A first variable +family: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -family: # family - var1: example # A first variable - var2: example # A second variable +family: + var1: example + var2: example ---- diff --git a/tests/results/test_examples/20_9default_information_parent.gitlab.md b/tests/results/test_examples/20_9default_information_parent.gitlab.md index 433d0fad0..0f29bbe5f 100644 --- a/tests/results/test_examples/20_9default_information_parent.gitlab.md +++ b/tests/results/test_examples/20_9default_information_parent.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -family: # family - var1: example # A first variable +family: + var1: example ``` @@ -11,9 +11,9 @@ family: # family ```yaml --- -family: # family - var1: example # A first variable - var2: example # A second variable +family: + var1: example + var2: example ``` diff --git a/tests/results/test_examples/20_9default_information_parent.html b/tests/results/test_examples/20_9default_information_parent.html index eb03ab352..2258e4ef9 100644 --- a/tests/results/test_examples/20_9default_information_parent.html +++ b/tests/results/test_examples/20_9default_information_parent.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
family:                       # family
-  var1: example               # A first variable

Example with all variables modifiable

+
family:
+  var1: example

Example with all variables modifiable

-
family:                       # family
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
family:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/20_9default_information_parent.sh b/tests/results/test_examples/20_9default_information_parent.sh index 3458b98d6..03d90f417 100644 --- a/tests/results/test_examples/20_9default_information_parent.sh +++ b/tests/results/test_examples/20_9default_information_parent.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -family: # family  - var1: example # A first variable  - - +family:  + var1: example  Example with all variables modifiable - ---  -family: # family  - var1: example # A first variable  - var2: example # A second variable  +family:  + var1: example  + var2: example  diff --git a/tests/results/test_examples/20_9family_absolute.adoc b/tests/results/test_examples/20_9family_absolute.adoc index f7da03c06..b832d3418 100644 --- a/tests/results/test_examples/20_9family_absolute.adoc +++ b/tests/results/test_examples/20_9family_absolute.adoc @@ -3,27 +3,27 @@ [,yaml] ---- --- -var1: example # First variable -family: # A family - var2: string6 # A second variable +var1: example +family: + var2: string6 ---- == Example with all variables modifiable [,yaml] ---- --- -var1: example # First variable -family: # A family - var2: string6 # A second variable - subfamily: # A sub family - variable: # Third variable +var1: example +family: + var2: string6 + subfamily: + variable: - - -family2: # A family - var2: example # A variable2 +family2: + var2: example var3: string5 - subfamily: # A sub family - variable: # Fourth variable + subfamily: + variable: - - - string4 diff --git a/tests/results/test_examples/20_9family_absolute.gitlab.md b/tests/results/test_examples/20_9family_absolute.gitlab.md index d4defcb6d..a51b6889e 100644 --- a/tests/results/test_examples/20_9family_absolute.gitlab.md +++ b/tests/results/test_examples/20_9family_absolute.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var1: example # First variable -family: # A family - var2: string6 # A second variable +var1: example +family: + var2: string6 ``` @@ -12,18 +12,18 @@ family: # A family ```yaml --- -var1: example # First variable -family: # A family - var2: string6 # A second variable - subfamily: # A sub family - variable: # Third variable +var1: example +family: + var2: string6 + subfamily: + variable: - - -family2: # A family - var2: example # A variable2 +family2: + var2: example var3: string5 - subfamily: # A sub family - variable: # Fourth variable + subfamily: + variable: - - - string4 diff --git a/tests/results/test_examples/20_9family_absolute.html b/tests/results/test_examples/20_9family_absolute.html index a35e30049..a3a2e0216 100644 --- a/tests/results/test_examples/20_9family_absolute.html +++ b/tests/results/test_examples/20_9family_absolute.html @@ -1,21 +1,21 @@

Example with mandatory variables not filled in

-
var1: example                 # First variable
-family:                       # A family
-  var2: string6               # A second variable

Example with all variables modifiable

+
var1: example
+family:
+  var2: string6

Example with all variables modifiable

-
var1: example                 # First variable
-family:                       # A family
-  var2: string6               # A second variable
-  subfamily:                  # A sub family
-    variable:                 # Third variable
+
var1: example
+family:
+  var2: string6
+  subfamily:
+    variable:
       - 
       - 
-family2:                      # A family
-  var2: example               # A variable2
+family2:
+  var2: example
   var3: string5
-  subfamily:                  # A sub family
-    variable:                 # Fourth variable
+  subfamily:
+    variable:
       - 
       - 
       - string4
\ No newline at end of file diff --git a/tests/results/test_examples/20_9family_absolute.sh b/tests/results/test_examples/20_9family_absolute.sh index 90c177d94..bf1cc833a 100644 --- a/tests/results/test_examples/20_9family_absolute.sh +++ b/tests/results/test_examples/20_9family_absolute.sh @@ -1,31 +1,25 @@ - - Example with mandatory variables not filled in - ---  -var1: example # First variable  -family: # A family  - var2: string6 # A second variable  - - +var1: example  +family:  + var2: string6  Example with all variables modifiable - ---  -var1: example # First variable  -family: # A family  - var2: string6 # A second variable  - subfamily: # A sub family  - variable: # Third variable  +var1: example  +family:  + var2: string6  + subfamily:  + variable:   -    -   -family2: # A family  - var2: example # A variable2  +family2:  + var2: example   var3: string5  - subfamily: # A sub family  - variable: # Fourth variable  + subfamily:  + variable:   -    -    - string4  diff --git a/tests/results/test_examples/24_0family_hidden_condition_sub_family.adoc b/tests/results/test_examples/24_0family_hidden_condition_sub_family.adoc index e2f519ee1..55599b356 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test_examples/24_0family_hidden_condition_sub_family.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +family: + subfamily: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: no # The variable use has condition -family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +condition: no +family: + subfamily: + var1: example ---- diff --git a/tests/results/test_examples/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_examples/24_0family_hidden_condition_sub_family.gitlab.md index 88f7e0be2..4fcd065ca 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_sub_family.gitlab.md +++ b/tests/results/test_examples/24_0family_hidden_condition_sub_family.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +family: + subfamily: + var1: example ``` @@ -12,10 +12,10 @@ family: # Possibly hidden family ```yaml --- -condition: no # The variable use has condition -family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +condition: no +family: + subfamily: + var1: example ``` diff --git a/tests/results/test_examples/24_0family_hidden_condition_sub_family.html b/tests/results/test_examples/24_0family_hidden_condition_sub_family.html index 898783b1c..e361234fa 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_sub_family.html +++ b/tests/results/test_examples/24_0family_hidden_condition_sub_family.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
family:                       # Possibly hidden family
-  subfamily:                  # subfamily
-    var1: example             # A variable

Example with all variables modifiable

+
family:
+  subfamily:
+    var1: example

Example with all variables modifiable

-
condition: no                 # The variable use has condition
-family:                       # Possibly hidden family
-  subfamily:                  # subfamily
-    var1: example             # A variable
\ No newline at end of file +
condition: no
+family:
+  subfamily:
+    var1: example
\ No newline at end of file diff --git a/tests/results/test_examples/24_0family_hidden_condition_sub_family.sh b/tests/results/test_examples/24_0family_hidden_condition_sub_family.sh index eec05ad4a..2ffe7a4b6 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_examples/24_0family_hidden_condition_sub_family.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -family: # Possibly hidden family  - subfamily: # subfamily  - var1: example # A variable  - - +family:  + subfamily:  + var1: example  Example with all variables modifiable - ---  -condition: no # The variable use has condition  -family: # Possibly hidden family  - subfamily: # subfamily  - var1: example # A variable  +condition: no  +family:  + subfamily:  + var1: example  diff --git a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.adoc index 6e17dfb63..f7ca0d4d5 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -condition: true # The variable use has condition -family: # Possibly hidden family - subfamily: # A subfamily - var1: example # A variable +condition: true +family: + subfamily: + var1: example ---- diff --git a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md index 83dca3a14..9235a1e62 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -condition: true # The variable use has condition -family: # Possibly hidden family - subfamily: # A subfamily - var1: example # A variable +condition: true +family: + subfamily: + var1: example ``` diff --git a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.html b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.html index eaab2ce00..8879a1bb9 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.html +++ b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
condition: true               # The variable use has condition
-family:                       # Possibly hidden family
-  subfamily:                  # A subfamily
-    var1: example             # A variable
\ No newline at end of file +
condition: true
+family:
+  subfamily:
+    var1: example
\ No newline at end of file diff --git a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.sh index e7a2d234f..da4a00751 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -condition: true # The variable use has condition  -family: # Possibly hidden family  - subfamily: # A subfamily  - var1: example # A variable  +condition: true  +family:  + subfamily:  + var1: example  diff --git a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.adoc b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.adoc index c2ce21166..aa451f6e2 100644 --- a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +family: + sub_family: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: no # The variable use has condition -family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +condition: no +family: + sub_family: + var1: example ---- diff --git a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.gitlab.md index e5bd95ef1..ed512ebbb 100644 --- a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.gitlab.md +++ b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +family: + sub_family: + var1: example ``` @@ -12,10 +12,10 @@ family: # Possibly hidden family ```yaml --- -condition: no # The variable use has condition -family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +condition: no +family: + sub_family: + var1: example ``` diff --git a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.html b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.html index a9e34d224..b5716a80f 100644 --- a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.html +++ b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
family:                       # Possibly hidden family
-  sub_family:                 # A subfamily
-    var1: example             # A variable

Example with all variables modifiable

+
family:
+  sub_family:
+    var1: example

Example with all variables modifiable

-
condition: no                 # The variable use has condition
-family:                       # Possibly hidden family
-  sub_family:                 # A subfamily
-    var1: example             # A variable
\ No newline at end of file +
condition: no
+family:
+  sub_family:
+    var1: example
\ No newline at end of file diff --git a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.sh index 2d579650b..70050e79a 100644 --- a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -family: # Possibly hidden family  - sub_family: # A subfamily  - var1: example # A variable  - - +family:  + sub_family:  + var1: example  Example with all variables modifiable - ---  -condition: no # The variable use has condition  -family: # Possibly hidden family  - sub_family: # A subfamily  - var1: example # A variable  +condition: no  +family:  + sub_family:  + var1: example  diff --git a/tests/results/test_examples/24_0family_mandatory_condition.adoc b/tests/results/test_examples/24_0family_mandatory_condition.adoc index 92c19dab7..152eefa22 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition.adoc +++ b/tests/results/test_examples/24_0family_mandatory_condition.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -condition: no # A condition -var: example # A variable +condition: no +var: example ---- diff --git a/tests/results/test_examples/24_0family_mandatory_condition.gitlab.md b/tests/results/test_examples/24_0family_mandatory_condition.gitlab.md index ebeebab2b..b7ac7f380 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition.gitlab.md +++ b/tests/results/test_examples/24_0family_mandatory_condition.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -condition: no # A condition -var: example # A variable +condition: no +var: example ``` diff --git a/tests/results/test_examples/24_0family_mandatory_condition.html b/tests/results/test_examples/24_0family_mandatory_condition.html index c8f1f149a..4b9caa70e 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition.html +++ b/tests/results/test_examples/24_0family_mandatory_condition.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
condition: no                 # A condition
-var: example                  # A variable
\ No newline at end of file +
condition: no
+var: example
\ No newline at end of file diff --git a/tests/results/test_examples/24_0family_mandatory_condition.sh b/tests/results/test_examples/24_0family_mandatory_condition.sh index f1a0364e3..73daa5504 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition.sh +++ b/tests/results/test_examples/24_0family_mandatory_condition.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -condition: no # A condition  -var: example # A variable  +condition: no  +var: example  diff --git a/tests/results/test_examples/24_0family_mandatory_condition_variable.adoc b/tests/results/test_examples/24_0family_mandatory_condition_variable.adoc index c760ad25b..27a6781e4 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_examples/24_0family_mandatory_condition_variable.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -condition: true # A condition -var: example # A variable +condition: true +var: example ---- diff --git a/tests/results/test_examples/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_examples/24_0family_mandatory_condition_variable.gitlab.md index 5a1cb5587..3a9dac69c 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition_variable.gitlab.md +++ b/tests/results/test_examples/24_0family_mandatory_condition_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -condition: true # A condition -var: example # A variable +condition: true +var: example ``` diff --git a/tests/results/test_examples/24_0family_mandatory_condition_variable.html b/tests/results/test_examples/24_0family_mandatory_condition_variable.html index c0764775f..d6bd9b361 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition_variable.html +++ b/tests/results/test_examples/24_0family_mandatory_condition_variable.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
condition: true               # A condition
-var: example                  # A variable
\ No newline at end of file +
condition: true
+var: example
\ No newline at end of file diff --git a/tests/results/test_examples/24_0family_mandatory_condition_variable.sh b/tests/results/test_examples/24_0family_mandatory_condition_variable.sh index 9a3697f13..f0269cbcd 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_examples/24_0family_mandatory_condition_variable.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -condition: true # A condition  -var: example # A variable  +condition: true  +var: example  diff --git a/tests/results/test_examples/24_7validators_variable_optional.adoc b/tests/results/test_examples/24_7validators_variable_optional.adoc index 5369cf77d..c53ca1aeb 100644 --- a/tests/results/test_examples/24_7validators_variable_optional.adoc +++ b/tests/results/test_examples/24_7validators_variable_optional.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -general: # A family - int: 5 # A first integer +general: + int: 5 ---- == Example with all variables modifiable [,yaml] ---- --- -general: # A family - int: 5 # A first integer - int2: 1 # A second integer +general: + int: 5 + int2: 1 ---- diff --git a/tests/results/test_examples/24_7validators_variable_optional.gitlab.md b/tests/results/test_examples/24_7validators_variable_optional.gitlab.md index 18137ce4a..aaf3f6429 100644 --- a/tests/results/test_examples/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test_examples/24_7validators_variable_optional.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -general: # A family - int: 5 # A first integer +general: + int: 5 ``` @@ -11,9 +11,9 @@ general: # A family ```yaml --- -general: # A family - int: 5 # A first integer - int2: 1 # A second integer +general: + int: 5 + int2: 1 ``` diff --git a/tests/results/test_examples/24_7validators_variable_optional.html b/tests/results/test_examples/24_7validators_variable_optional.html index ecd0bccdb..cd6ea7700 100644 --- a/tests/results/test_examples/24_7validators_variable_optional.html +++ b/tests/results/test_examples/24_7validators_variable_optional.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
general:                      # A family
-  int: 5                      # A first integer

Example with all variables modifiable

+
general:
+  int: 5

Example with all variables modifiable

-
general:                      # A family
-  int: 5                      # A first integer
-  int2: 1                     # A second integer
\ No newline at end of file +
general:
+  int: 5
+  int2: 1
\ No newline at end of file diff --git a/tests/results/test_examples/24_7validators_variable_optional.sh b/tests/results/test_examples/24_7validators_variable_optional.sh index 94fefacf0..ed1ed057c 100644 --- a/tests/results/test_examples/24_7validators_variable_optional.sh +++ b/tests/results/test_examples/24_7validators_variable_optional.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -general: # A family  - int: 5 # A first integer  - - +general:  + int: 5  Example with all variables modifiable - ---  -general: # A family  - int: 5 # A first integer  - int2: 1 # A second integer  +general:  + int: 5  + int2: 1  diff --git a/tests/results/test_examples/40_0leadership.adoc b/tests/results/test_examples/40_0leadership.adoc index c352d071b..026fc4d6b 100644 --- a/tests/results/test_examples/40_0leadership.adoc +++ b/tests/results/test_examples/40_0leadership.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leader: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/40_0leadership.gitlab.md b/tests/results/test_examples/40_0leadership.gitlab.md index b59955836..fc5616a33 100644 --- a/tests/results/test_examples/40_0leadership.gitlab.md +++ b/tests/results/test_examples/40_0leadership.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leader: + - leader: example + follower1: example + follower2: example ``` @@ -13,10 +13,10 @@ leader: # A leadership ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/40_0leadership.html b/tests/results/test_examples/40_0leadership.html index 0af7e69c7..20d8c1eea 100644 --- a/tests/results/test_examples/40_0leadership.html +++ b/tests/results/test_examples/40_0leadership.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower
-    follower2: example        # An other follower

Example with all variables modifiable

+
leader:
+  - leader: example
+    follower1: example
+    follower2: example

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower
-    follower2: example        # An other follower
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: example
+    follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership.sh b/tests/results/test_examples/40_0leadership.sh index 1c777e532..7c54dc57c 100644 --- a/tests/results/test_examples/40_0leadership.sh +++ b/tests/results/test_examples/40_0leadership.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  - - +leader:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  +leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples/40_0leadership_diff_name.adoc b/tests/results/test_examples/40_0leadership_diff_name.adoc index 5900c81a8..1f7e3e672 100644 --- a/tests/results/test_examples/40_0leadership_diff_name.adoc +++ b/tests/results/test_examples/40_0leadership_diff_name.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leadership: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/40_0leadership_diff_name.gitlab.md b/tests/results/test_examples/40_0leadership_diff_name.gitlab.md index 2d61e5a5b..2353a33c5 100644 --- a/tests/results/test_examples/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test_examples/40_0leadership_diff_name.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leadership: + - leader: example + follower1: example + follower2: example ``` @@ -13,10 +13,10 @@ leadership: # A leadership ```yaml --- -leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/40_0leadership_diff_name.html b/tests/results/test_examples/40_0leadership_diff_name.html index 083033ce2..e3e2608a9 100644 --- a/tests/results/test_examples/40_0leadership_diff_name.html +++ b/tests/results/test_examples/40_0leadership_diff_name.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
leadership:                   # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower
-    follower2: example        # An other follower

Example with all variables modifiable

+
leadership:
+  - leader: example
+    follower1: example
+    follower2: example

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower
-    follower2: example        # An other follower
\ No newline at end of file +
leadership:
+  - leader: example
+    follower1: example
+    follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_diff_name.sh b/tests/results/test_examples/40_0leadership_diff_name.sh index 7efdc54cc..a510b5ba5 100644 --- a/tests/results/test_examples/40_0leadership_diff_name.sh +++ b/tests/results/test_examples/40_0leadership_diff_name.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  - - +leadership:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  +leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples/40_0leadership_follower_default_calculation.adoc b/tests/results/test_examples/40_0leadership_follower_default_calculation.adoc index 82fb470c0..8ef331c52 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_examples/40_0leadership_follower_default_calculation.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader +leader: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: value # A follower - follower2: value # A second follower +leader: + - leader: example + follower1: value + follower2: value ---- diff --git a/tests/results/test_examples/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_examples/40_0leadership_follower_default_calculation.gitlab.md index 0cacb80e5..4c3cb5698 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test_examples/40_0leadership_follower_default_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader +leader: + - leader: example ``` @@ -11,10 +11,10 @@ leader: # A leadership ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: value # A follower - follower2: value # A second follower +leader: + - leader: example + follower1: value + follower2: value ``` diff --git a/tests/results/test_examples/40_0leadership_follower_default_calculation.html b/tests/results/test_examples/40_0leadership_follower_default_calculation.html index a3a0b5271..66f61589a 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_calculation.html +++ b/tests/results/test_examples/40_0leadership_follower_default_calculation.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
leader:                       # A leadership
-  - leader: example           # A leader

Example with all variables modifiable

+
leader:
+  - leader: example

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: value          # A follower
-    follower2: value          # A second follower
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: value
+    follower2: value
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_follower_default_calculation.sh b/tests/results/test_examples/40_0leadership_follower_default_calculation.sh index a639ce57e..647f9eaba 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_examples/40_0leadership_follower_default_calculation.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -leader: # A leadership  - - leader: example # A leader  - - +leader:  + - leader: example  Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: value # A follower  - follower2: value # A second follower  +leader:  + - leader: example  + follower1: value  + follower2: value  diff --git a/tests/results/test_examples/40_0leadership_follower_default_value.adoc b/tests/results/test_examples/40_0leadership_follower_default_value.adoc index e97e8d01e..6d4ad92de 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_examples/40_0leadership_follower_default_value.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: value # A follower with default value +leader: + - leader: example + follower1: value ---- diff --git a/tests/results/test_examples/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_examples/40_0leadership_follower_default_value.gitlab.md index 335a97048..3e1c844ad 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test_examples/40_0leadership_follower_default_value.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: value # A follower with default value +leader: + - leader: example + follower1: value ``` diff --git a/tests/results/test_examples/40_0leadership_follower_default_value.html b/tests/results/test_examples/40_0leadership_follower_default_value.html index 12a6e780f..8616e5097 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_value.html +++ b/tests/results/test_examples/40_0leadership_follower_default_value.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: value          # A follower with default value
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: value
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_follower_default_value.sh b/tests/results/test_examples/40_0leadership_follower_default_value.sh index 7d5f1ed73..5661ea3fc 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_value.sh +++ b/tests/results/test_examples/40_0leadership_follower_default_value.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: value # A follower with default value  +leader:  + - leader: example  + follower1: value  diff --git a/tests/results/test_examples/40_0leadership_leader_follower.adoc b/tests/results/test_examples/40_0leadership_leader_follower.adoc index ada65061c..ea94ce4e4 100644 --- a/tests/results/test_examples/40_0leadership_leader_follower.adoc +++ b/tests/results/test_examples/40_0leadership_leader_follower.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: value1 # A leader - follower: value1 # A follower - - leader: value2 # A leader - follower: value2 # A follower +leadership: + - leader: value1 + follower: value1 + - leader: value2 + follower: value2 ---- diff --git a/tests/results/test_examples/40_0leadership_leader_follower.gitlab.md b/tests/results/test_examples/40_0leadership_leader_follower.gitlab.md index be2ba0c63..23d8223c1 100644 --- a/tests/results/test_examples/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test_examples/40_0leadership_leader_follower.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -leadership: # A leadership - - leader: value1 # A leader - follower: value1 # A follower - - leader: value2 # A leader - follower: value2 # A follower +leadership: + - leader: value1 + follower: value1 + - leader: value2 + follower: value2 ``` diff --git a/tests/results/test_examples/40_0leadership_leader_follower.html b/tests/results/test_examples/40_0leadership_leader_follower.html index ab7fc0a86..891c69a88 100644 --- a/tests/results/test_examples/40_0leadership_leader_follower.html +++ b/tests/results/test_examples/40_0leadership_leader_follower.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: value1            # A leader
-    follower: value1          # A follower
-  - leader: value2            # A leader
-    follower: value2          # A follower
\ No newline at end of file +
leadership:
+  - leader: value1
+    follower: value1
+  - leader: value2
+    follower: value2
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_leader_follower.sh b/tests/results/test_examples/40_0leadership_leader_follower.sh index 72d395ef0..eee2559f2 100644 --- a/tests/results/test_examples/40_0leadership_leader_follower.sh +++ b/tests/results/test_examples/40_0leadership_leader_follower.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: value1 # A leader  - follower: value1 # A follower  - - leader: value2 # A leader  - follower: value2 # A follower  +leadership:  + - leader: value1  + follower: value1  + - leader: value2  + follower: value2  diff --git a/tests/results/test_examples/40_0leadership_leader_not_multi.adoc b/tests/results/test_examples/40_0leadership_leader_not_multi.adoc index f4b1c054d..3324c1bd4 100644 --- a/tests/results/test_examples/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_examples/40_0leadership_leader_not_multi.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +general1: + leader: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -general: # general - mode_conteneur_actif: non # No change -general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +general: + mode_conteneur_actif: non +general1: + leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_examples/40_0leadership_leader_not_multi.gitlab.md index 0b0205bca..dbc3ea6fb 100644 --- a/tests/results/test_examples/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test_examples/40_0leadership_leader_not_multi.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +general1: + leader: + - leader: example + follower1: example + follower2: example ``` @@ -14,13 +14,13 @@ general1: # general1 ```yaml --- -general: # general - mode_conteneur_actif: non # No change -general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +general: + mode_conteneur_actif: non +general1: + leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/40_0leadership_leader_not_multi.html b/tests/results/test_examples/40_0leadership_leader_not_multi.html index 21f89e942..e659a495f 100644 --- a/tests/results/test_examples/40_0leadership_leader_not_multi.html +++ b/tests/results/test_examples/40_0leadership_leader_not_multi.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
general1:                     # general1
-  leader:                     # Leader
-    - leader: example         # Leader
-      follower1: example      # Follower1
-      follower2: example      # Follower2

Example with all variables modifiable

+
general1:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example

Example with all variables modifiable

-
general:                      # general
-  mode_conteneur_actif: non   # No change
-general1:                     # general1
-  leader:                     # Leader
-    - leader: example         # Leader
-      follower1: example      # Follower1
-      follower2: example      # Follower2
\ No newline at end of file +
general:
+  mode_conteneur_actif: non
+general1:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_leader_not_multi.sh b/tests/results/test_examples/40_0leadership_leader_not_multi.sh index 9e0b2da68..252b7f775 100644 --- a/tests/results/test_examples/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_examples/40_0leadership_leader_not_multi.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -general1: # general1  - leader: # Leader  - - leader: example # Leader  - follower1: example # Follower1  - follower2: example # Follower2  - - +general1:  + leader:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -general: # general  - mode_conteneur_actif: non # No change  -general1: # general1  - leader: # Leader  - - leader: example # Leader  - follower1: example # Follower1  - follower2: example # Follower2  +general:  + mode_conteneur_actif: non  +general1:  + leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples/40_0leadership_reduce.adoc b/tests/results/test_examples/40_0leadership_reduce.adoc index d82ad2303..dcecbec82 100644 --- a/tests/results/test_examples/40_0leadership_reduce.adoc +++ b/tests/results/test_examples/40_0leadership_reduce.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: val1 # A leader - follower: example # A follower - - leader: val2 # A leader - follower: example # A follower +leadership: + - leader: val1 + follower: example + - leader: val2 + follower: example ---- diff --git a/tests/results/test_examples/40_0leadership_reduce.gitlab.md b/tests/results/test_examples/40_0leadership_reduce.gitlab.md index 1c74f65a1..92f726a1b 100644 --- a/tests/results/test_examples/40_0leadership_reduce.gitlab.md +++ b/tests/results/test_examples/40_0leadership_reduce.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -leadership: # A leadership - - leader: val1 # A leader - follower: example # A follower - - leader: val2 # A leader - follower: example # A follower +leadership: + - leader: val1 + follower: example + - leader: val2 + follower: example ``` diff --git a/tests/results/test_examples/40_0leadership_reduce.html b/tests/results/test_examples/40_0leadership_reduce.html index 7ccc746c7..7aaf01491 100644 --- a/tests/results/test_examples/40_0leadership_reduce.html +++ b/tests/results/test_examples/40_0leadership_reduce.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: val1              # A leader
-    follower: example         # A follower
-  - leader: val2              # A leader
-    follower: example         # A follower
\ No newline at end of file +
leadership:
+  - leader: val1
+    follower: example
+  - leader: val2
+    follower: example
\ No newline at end of file diff --git a/tests/results/test_examples/40_0leadership_reduce.sh b/tests/results/test_examples/40_0leadership_reduce.sh index 6bf4b7f3e..8593f6f89 100644 --- a/tests/results/test_examples/40_0leadership_reduce.sh +++ b/tests/results/test_examples/40_0leadership_reduce.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: val1 # A leader  - follower: example # A follower  - - leader: val2 # A leader  - follower: example # A follower  +leadership:  + - leader: val1  + follower: example  + - leader: val2  + follower: example  diff --git a/tests/results/test_examples/40_1leadership_append_follower.adoc b/tests/results/test_examples/40_1leadership_append_follower.adoc index e393b8f59..1b8047aa6 100644 --- a/tests/results/test_examples/40_1leadership_append_follower.adoc +++ b/tests/results/test_examples/40_1leadership_append_follower.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +leader: + - leader: example + follower1: example + follower2: example + follower3: example ---- == Example with all variables modifiable [,yaml] ---- --- -leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +leader: + - leader: example + follower1: example + follower2: example + follower3: example ---- diff --git a/tests/results/test_examples/40_1leadership_append_follower.gitlab.md b/tests/results/test_examples/40_1leadership_append_follower.gitlab.md index 7dff0ca61..5291d35cd 100644 --- a/tests/results/test_examples/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test_examples/40_1leadership_append_follower.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +leader: + - leader: example + follower1: example + follower2: example + follower3: example ``` @@ -14,11 +14,11 @@ leader: # A leadership ```yaml --- -leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +leader: + - leader: example + follower1: example + follower2: example + follower3: example ``` diff --git a/tests/results/test_examples/40_1leadership_append_follower.html b/tests/results/test_examples/40_1leadership_append_follower.html index a806e5b75..dec376e40 100644 --- a/tests/results/test_examples/40_1leadership_append_follower.html +++ b/tests/results/test_examples/40_1leadership_append_follower.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
leader:                       # A leadership
-  - leader: example           # The leader
-    follower1: example        # The follower1
-    follower2: example        # The follower2
-    follower3: example        # The follower3

Example with all variables modifiable

+
leader:
+  - leader: example
+    follower1: example
+    follower2: example
+    follower3: example

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # The leader
-    follower1: example        # The follower1
-    follower2: example        # The follower2
-    follower3: example        # The follower3
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: example
+    follower2: example
+    follower3: example
\ No newline at end of file diff --git a/tests/results/test_examples/40_1leadership_append_follower.sh b/tests/results/test_examples/40_1leadership_append_follower.sh index 8144aa26b..4a0609af1 100644 --- a/tests/results/test_examples/40_1leadership_append_follower.sh +++ b/tests/results/test_examples/40_1leadership_append_follower.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -leader: # A leadership  - - leader: example # The leader  - follower1: example # The follower1  - follower2: example # The follower2  - follower3: example # The follower3  - - +leader:  + - leader: example  + follower1: example  + follower2: example  + follower3: example  Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # The leader  - follower1: example # The follower1  - follower2: example # The follower2  - follower3: example # The follower3  +leader:  + - leader: example  + follower1: example  + follower2: example  + follower3: example  diff --git a/tests/results/test_examples/40_2leadership_calculation_index.adoc b/tests/results/test_examples/40_2leadership_calculation_index.adoc index cd8ff1d2d..9d6a955d7 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index.adoc +++ b/tests/results/test_examples/40_2leadership_calculation_index.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ---- diff --git a/tests/results/test_examples/40_2leadership_calculation_index.gitlab.md b/tests/results/test_examples/40_2leadership_calculation_index.gitlab.md index e20190af8..e1d5ae426 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test_examples/40_2leadership_calculation_index.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ``` diff --git a/tests/results/test_examples/40_2leadership_calculation_index.html b/tests/results/test_examples/40_2leadership_calculation_index.html index 9dd3dd579..af91076db 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index.html +++ b/tests/results/test_examples/40_2leadership_calculation_index.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: a                 # A leader
-    follower1: 0              # A follower
-  - leader: b                 # A leader
-    follower1: 1              # A follower
-  - leader: c                 # A leader
-    follower1: 2              # A follower
\ No newline at end of file +
leader:
+  - leader: a
+    follower1: 0
+  - leader: b
+    follower1: 1
+  - leader: c
+    follower1: 2
\ No newline at end of file diff --git a/tests/results/test_examples/40_2leadership_calculation_index.sh b/tests/results/test_examples/40_2leadership_calculation_index.sh index 85b88c0a8..b506a8eae 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index.sh +++ b/tests/results/test_examples/40_2leadership_calculation_index.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: a # A leader  - follower1: 0 # A follower  - - leader: b # A leader  - follower1: 1 # A follower  - - leader: c # A leader  - follower1: 2 # A follower  +leader:  + - leader: a  + follower1: 0  + - leader: b  + follower1: 1  + - leader: c  + follower1: 2  diff --git a/tests/results/test_examples/40_2leadership_calculation_index_2.adoc b/tests/results/test_examples/40_2leadership_calculation_index_2.adoc index cd8ff1d2d..9d6a955d7 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_examples/40_2leadership_calculation_index_2.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ---- diff --git a/tests/results/test_examples/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_examples/40_2leadership_calculation_index_2.gitlab.md index e20190af8..e1d5ae426 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test_examples/40_2leadership_calculation_index_2.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ``` diff --git a/tests/results/test_examples/40_2leadership_calculation_index_2.html b/tests/results/test_examples/40_2leadership_calculation_index_2.html index 9dd3dd579..af91076db 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index_2.html +++ b/tests/results/test_examples/40_2leadership_calculation_index_2.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: a                 # A leader
-    follower1: 0              # A follower
-  - leader: b                 # A leader
-    follower1: 1              # A follower
-  - leader: c                 # A leader
-    follower1: 2              # A follower
\ No newline at end of file +
leader:
+  - leader: a
+    follower1: 0
+  - leader: b
+    follower1: 1
+  - leader: c
+    follower1: 2
\ No newline at end of file diff --git a/tests/results/test_examples/40_2leadership_calculation_index_2.sh b/tests/results/test_examples/40_2leadership_calculation_index_2.sh index 85b88c0a8..b506a8eae 100644 --- a/tests/results/test_examples/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_examples/40_2leadership_calculation_index_2.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: a # A leader  - follower1: 0 # A follower  - - leader: b # A leader  - follower1: 1 # A follower  - - leader: c # A leader  - follower1: 2 # A follower  +leader:  + - leader: a  + follower1: 0  + - leader: b  + follower1: 1  + - leader: c  + follower1: 2  diff --git a/tests/results/test_examples/40_6leadership_follower_multi.adoc b/tests/results/test_examples/40_6leadership_follower_multi.adoc index 5f3585793..c07d24b9f 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi.adoc +++ b/tests/results/test_examples/40_6leadership_follower_multi.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example ---- == Example with all variables modifiable @@ -13,10 +13,10 @@ leadership: # A leadership [,yaml] ---- --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ---- diff --git a/tests/results/test_examples/40_6leadership_follower_multi.gitlab.md b/tests/results/test_examples/40_6leadership_follower_multi.gitlab.md index 8c4bc4214..c67b2be13 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test_examples/40_6leadership_follower_multi.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example ``` @@ -13,11 +13,11 @@ leadership: # A leadership ```yaml --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ``` diff --git a/tests/results/test_examples/40_6leadership_follower_multi.html b/tests/results/test_examples/40_6leadership_follower_multi.html index 0f1e0936a..ba8bef476 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi.html +++ b/tests/results/test_examples/40_6leadership_follower_multi.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
leadership:                   # A leadership
-  - leader: example           # The leader
-    follower1:                # The first follower
+
leadership:
+  - leader: example
+    follower1:
       - example

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: example           # The leader
-    follower1:                # The first follower
+
leadership:
+  - leader: example
+    follower1:
       - example
-    follower2:                # The second follower
+    follower2:
       - value
\ No newline at end of file diff --git a/tests/results/test_examples/40_6leadership_follower_multi.sh b/tests/results/test_examples/40_6leadership_follower_multi.sh index 79f326236..3726a2cf2 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi.sh +++ b/tests/results/test_examples/40_6leadership_follower_multi.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +leadership:  + - leader: example  + follower1:   - example  - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +leadership:  + - leader: example  + follower1:   - example  - follower2: # The second follower  + follower2:   - value  diff --git a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.adoc index 9b2d0db71..1c12791c7 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ---- diff --git a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md index c2ed0a93e..a55ebefaa 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ``` diff --git a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.html b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.html index b22b7cb7e..931563ebb 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.html +++ b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: example           # The leader
-    follower1:                # The first follower
+
leadership:
+  - leader: example
+    follower1:
       - example
-    follower2:                # The second follower
+    follower2:
       - value
\ No newline at end of file diff --git a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.sh index 0b8d9aa83..0c6be5c48 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_examples/40_6leadership_follower_multi_no_mandatory.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +leadership:  + - leader: example  + follower1:   - example  - follower2: # The second follower  + follower2:   - value  diff --git a/tests/results/test_examples/40_8calculation_boolean.adoc b/tests/results/test_examples/40_8calculation_boolean.adoc index 39629605e..6c582c354 100644 --- a/tests/results/test_examples/40_8calculation_boolean.adoc +++ b/tests/results/test_examples/40_8calculation_boolean.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -bool: false # A boolean variable -multi1: # A first multi variable +bool: false +multi1: - false -multi2: # A second multi variable +multi2: - true - false ---- diff --git a/tests/results/test_examples/40_8calculation_boolean.gitlab.md b/tests/results/test_examples/40_8calculation_boolean.gitlab.md index 9c16f5365..4448d2104 100644 --- a/tests/results/test_examples/40_8calculation_boolean.gitlab.md +++ b/tests/results/test_examples/40_8calculation_boolean.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -bool: false # A boolean variable -multi1: # A first multi variable +bool: false +multi1: - false -multi2: # A second multi variable +multi2: - true - false ``` diff --git a/tests/results/test_examples/40_8calculation_boolean.html b/tests/results/test_examples/40_8calculation_boolean.html index 5c40fb5c8..99b839a81 100644 --- a/tests/results/test_examples/40_8calculation_boolean.html +++ b/tests/results/test_examples/40_8calculation_boolean.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
bool: false                   # A boolean variable
-multi1:                       # A first multi variable
+
bool: false
+multi1:
   - false
-multi2:                       # A second multi variable
+multi2:
   - true
   - false
\ No newline at end of file diff --git a/tests/results/test_examples/40_8calculation_boolean.sh b/tests/results/test_examples/40_8calculation_boolean.sh index e02ae8434..ba363b702 100644 --- a/tests/results/test_examples/40_8calculation_boolean.sh +++ b/tests/results/test_examples/40_8calculation_boolean.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -bool: false # A boolean variable  -multi1: # A first multi variable  +bool: false  +multi1:   - false  -multi2: # A second multi variable  +multi2:   - true   - false  diff --git a/tests/results/test_examples/40_8calculation_multi_variable.adoc b/tests/results/test_examples/40_8calculation_multi_variable.adoc index 720fe69d2..974aada73 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable.adoc +++ b/tests/results/test_examples/40_8calculation_multi_variable.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -var: # A first variable +var: - no - yes -var2: no # A second variable -var3: yes # A third variable +var2: no +var3: yes ---- diff --git a/tests/results/test_examples/40_8calculation_multi_variable.gitlab.md b/tests/results/test_examples/40_8calculation_multi_variable.gitlab.md index 30a3588b8..1f5bd3cbb 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable.gitlab.md +++ b/tests/results/test_examples/40_8calculation_multi_variable.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -var: # A first variable +var: - no - yes -var2: no # A second variable -var3: yes # A third variable +var2: no +var3: yes ``` diff --git a/tests/results/test_examples/40_8calculation_multi_variable.html b/tests/results/test_examples/40_8calculation_multi_variable.html index a95baba41..4d82e39bc 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable.html +++ b/tests/results/test_examples/40_8calculation_multi_variable.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
var:                          # A first variable
+
var:
   - no
   - yes
-var2: no                      # A second variable
-var3: yes                     # A third variable
\ No newline at end of file +var2: no +var3: yes
\ No newline at end of file diff --git a/tests/results/test_examples/40_8calculation_multi_variable.sh b/tests/results/test_examples/40_8calculation_multi_variable.sh index f4ae3461a..230fd30a8 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable.sh +++ b/tests/results/test_examples/40_8calculation_multi_variable.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -var: # A first variable  +var:   - no   - yes  -var2: no # A second variable  -var3: yes # A third variable  +var2: no  +var3: yes  diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent.adoc b/tests/results/test_examples/40_8calculation_multi_variable_parent.adoc index bbcdbe01b..59af473b7 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var: no # A variable -fam1: # A family - var: no # A calculated variable +var: no +fam1: + var: no ---- diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_examples/40_8calculation_multi_variable_parent.gitlab.md index 665f4d8aa..d5e968ba0 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -var: no # A variable -fam1: # A family - var: no # A calculated variable +var: no +fam1: + var: no ``` diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent.html b/tests/results/test_examples/40_8calculation_multi_variable_parent.html index c22f4f0ce..27ca3b712 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent.html +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
var: no                       # A variable
-fam1:                         # A family
-  var: no                     # A calculated variable
\ No newline at end of file +
var: no
+fam1:
+  var: no
\ No newline at end of file diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent.sh b/tests/results/test_examples/40_8calculation_multi_variable_parent.sh index f9d6a99de..6c5b16412 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -var: no # A variable  -fam1: # A family  - var: no # A calculated variable  +var: no  +fam1:  + var: no  diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_examples/40_8calculation_multi_variable_parent2.adoc index 490804527..7e255d9f9 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent2.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -fam1: # First family - var: no # A variable -fam2: # Second family - var: no # A variable +fam1: + var: no +fam2: + var: no ---- diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_examples/40_8calculation_multi_variable_parent2.gitlab.md index ed0898301..fefffcb74 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent2.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -fam1: # First family - var: no # A variable -fam2: # Second family - var: no # A variable +fam1: + var: no +fam2: + var: no ``` diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent2.html b/tests/results/test_examples/40_8calculation_multi_variable_parent2.html index 0bd1d669b..70d7db714 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent2.html +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent2.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
fam1:                         # First family
-  var: no                     # A variable
-fam2:                         # Second family
-  var: no                     # A variable
\ No newline at end of file +
fam1:
+  var: no
+fam2:
+  var: no
\ No newline at end of file diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent2.sh b/tests/results/test_examples/40_8calculation_multi_variable_parent2.sh index 961e7b386..845990b4e 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent2.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -fam1: # First family  - var: no # A variable  -fam2: # Second family  - var: no # A variable  +fam1:  + var: no  +fam2:  + var: no  diff --git a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.adoc index 480d51601..bf9909f7b 100644 --- a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: value1 # A leader - follower: # A follower +leadership: + - leader: value1 + follower: - value1 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value2 ---- diff --git a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md index 504b670c1..d46ff090c 100644 --- a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -leadership: # A leadership - - leader: value1 # A leader - follower: # A follower +leadership: + - leader: value1 + follower: - value1 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value2 ``` diff --git a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.html index f849b79ad..f12a3684f 100644 --- a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.html +++ b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: value1            # A leader
-    follower:                 # A follower
+
leadership:
+  - leader: value1
+    follower:
       - value1
-  - leader: value2            # A leader
-    follower:                 # A follower
+  - leader: value2
+    follower:
       - value2
\ No newline at end of file diff --git a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.sh index 845913a54..ba0812186 100644 --- a/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_examples/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: value1 # A leader  - follower: # A follower  +leadership:  + - leader: value1  + follower:   - value1  - - leader: value2 # A leader  - follower: # A follower  + - leader: value2  + follower:   - value2  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.adoc index 2a24f9089..3c00d8095 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - val11 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.gitlab.md index 97489c714..3a905f9c8 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - val11 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.html b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.html index 7d40c127d..8888e1813 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - val11
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.sh index 6c81e503a..bb080cab1 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate:   - val11  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.adoc index 2a24f9089..3c00d8095 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - val11 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.gitlab.md index 97489c714..3a905f9c8 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - val11 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.html b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.html index 7d40c127d..8888e1813 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - val11
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.sh index 6c81e503a..bb080cab1 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate:   - val11  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc index 9fe2c2122..3701ca177 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -leader: # leader +leader: - leader: a follower: example - leader: b diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index dc92fb978..ce82e2307 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -leader: # leader +leader: - leader: a follower: example - leader: b diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.html index b7e53574b..09dd0647d 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
leader:                       # leader
+
leader:
   - leader: a
     follower: example
   - leader: b
diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
index f8112d69d..201dc473c 100644
--- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -1,10 +1,7 @@
-
-
 Example with all variables modifiable
 
-
 ---                                                                             
-leader:                       # leader                                          
+leader:                                                                         
   - leader: a                                                                   
     follower: example                                                           
   - leader: b                                                                   
diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-follower.adoc
index b5d895b59..ed8c507e6 100644
--- a/tests/results/test_examples/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower.adoc
@@ -3,14 +3,14 @@
 [,yaml]
 ----
 ---
-leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - val11
   - val11
 ----
diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower.gitlab.md
index 56b4abc4f..b00c43a4e 100644
--- a/tests/results/test_examples/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower.gitlab.md
@@ -2,14 +2,14 @@
 
 ```yaml
 ---
-leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - val11
   - val11
 ```
diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower.html b/tests/results/test_examples/40_9leadership-calculation-outside-follower.html
index 890671315..bc9f95300 100644
--- a/tests/results/test_examples/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower.html
@@ -1,12 +1,12 @@
 

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - val11
   - val11
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower.sh b/tests/results/test_examples/40_9leadership-calculation-outside-follower.sh index a7182bed3..b6b241ec9 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate:   - val11   - val11  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.adoc index fc9e1b493..df9be2fa9 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: value1 # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: value1 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.gitlab.md index 473e1f950..462c1b5da 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: value1 # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: value1 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.html b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.html index 1c78bcf38..cfb7db8d4 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate: value1             # A calculated variable
\ No newline at end of file +
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate: value1
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.sh index e1048a186..4fe3af295 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: value1 # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate: value1  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.adoc index d30375091..903bcc4f3 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: value2 # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: value2 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.gitlab.md index d4985248e..b1e0063a9 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: value2 # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: value2 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.html b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.html index 869b4d333..bcb31c584 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate: value2             # A calculated variable
\ No newline at end of file +
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate: value2
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.sh index c642d9ad2..d02e412c4 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: value2 # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate: value2  diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_examples/40_9leadership-calculation-outside-leader.adoc index 2328df1e4..26bad2840 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - value1 - value2 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader.gitlab.md index 6f39bde45..73070986d 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower -calculate: # A calculated variable +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 +calculate: - value1 - value2 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader.html b/tests/results/test_examples/40_9leadership-calculation-outside-leader.html index 72c663b63..955df6d6d 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader.html +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-calculate:                    # A calculated variable
+
leader:
+  - leader: value1
+    follower1: val11
+    follower2: val21
+  - leader: value2
+    follower1: val11
+    follower2: val21
+calculate:
   - value1
   - value2
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader.sh b/tests/results/test_examples/40_9leadership-calculation-outside-leader.sh index 340b7d928..f25bf020f 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  -calculate: # A calculated variable  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  +calculate:   - value1   - value2  diff --git a/tests/results/test_examples/40_9leadership-calculation-variable.adoc b/tests/results/test_examples/40_9leadership-calculation-variable.adoc index 7836dbcb1..1bb4d816b 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-variable.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -calculate: # A calculated variable +calculate: - value1 - value2 -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-variable.gitlab.md index 2e81d484b..69f79f4df 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-variable.gitlab.md @@ -2,16 +2,16 @@ ```yaml --- -calculate: # A calculated variable +calculate: - value1 - value2 -leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-variable.html b/tests/results/test_examples/40_9leadership-calculation-variable.html index e2b5f6acc..63fe25171 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable.html +++ b/tests/results/test_examples/40_9leadership-calculation-variable.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
calculate:                    # A calculated variable
+
calculate:
   - value1
   - value2
-leader:                       # A leadership
-  - leader: value1            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
-  - leader: value2            # A leader
-    follower1: val11          # A follower
-    follower2: val21          # An other follower
\ No newline at end of file +leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-variable.sh b/tests/results/test_examples/40_9leadership-calculation-variable.sh index a6bc93493..cabd556be 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable.sh +++ b/tests/results/test_examples/40_9leadership-calculation-variable.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -calculate: # A calculated variable  +calculate:   - value1   - value2  -leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  +leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.adoc index e70d8bbb2..60a4090f3 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower -leadership_2: # A second leadership - - leader: # A leader - follower: val # A follower - - leader: # A leader - follower: val # A follower +leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example +leadership_2: + - leader: + follower: val + - leader: + follower: val ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md index 2c116a797..f927e1243 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md @@ -2,16 +2,16 @@ ```yaml --- -leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower -leadership_2: # A second leadership - - leader: # A leader - follower: val # A follower - - leader: # A leader - follower: val # A follower +leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example +leadership_2: + - leader: + follower: val + - leader: + follower: val ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.html index 47a3b69b4..57f323d1b 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.html +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
leadership_1:                 # A leadership
-  - leader: value1            # A leader
-    follower: example         # A follower
-  - leader: value2            # A leader
-    follower: example         # A follower
-leadership_2:                 # A second leadership
-  - leader:                   # A leader
-    follower: val             # A follower
-  - leader:                   # A leader
-    follower: val             # A follower
\ No newline at end of file +
leadership_1:
+  - leader: value1
+    follower: example
+  - leader: value2
+    follower: example
+leadership_2:
+  - leader:
+    follower: val
+  - leader:
+    follower: val
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.sh index 3183d7118..b01534612 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -leadership_1: # A leadership  - - leader: value1 # A leader  - follower: example # A follower  - - leader: value2 # A leader  - follower: example # A follower  -leadership_2: # A second leadership  - - leader: # A leader  - follower: val # A follower  - - leader: # A leader  - follower: val # A follower  +leadership_1:  + - leader: value1  + follower: example  + - leader: value2  + follower: example  +leadership_2:  + - leader:  + follower: val  + - leader:  + follower: val  diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 720ccdbef..064c299df 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower -leadership_2: # A second leadership - - leader: value1 # A leader - follower: # A follower +leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example +leadership_2: + - leader: value1 + follower: - value1 - value2 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value1 - value2 ---- diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md index 90a5bcc41..dc96388b4 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md @@ -2,18 +2,18 @@ ```yaml --- -leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower -leadership_2: # A second leadership - - leader: value1 # A leader - follower: # A follower +leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example +leadership_2: + - leader: value1 + follower: - value1 - value2 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value1 - value2 ``` diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.html index 0536ab803..376d12f30 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.html +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.html @@ -1,16 +1,16 @@

Example with all variables modifiable

-
leadership_1:                 # A leadership
-  - leader: value1            # A leader
-    follower: example         # A follower
-  - leader: value2            # A leader
-    follower: example         # A follower
-leadership_2:                 # A second leadership
-  - leader: value1            # A leader
-    follower:                 # A follower
+
leadership_1:
+  - leader: value1
+    follower: example
+  - leader: value2
+    follower: example
+leadership_2:
+  - leader: value1
+    follower:
       - value1
       - value2
-  - leader: value2            # A leader
-    follower:                 # A follower
+  - leader: value2
+    follower:
       - value1
       - value2
\ No newline at end of file diff --git a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh index 0b55fb142..1afbb8b47 100644 --- a/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,21 +1,18 @@ - - Example with all variables modifiable - ---  -leadership_1: # A leadership  - - leader: value1 # A leader  - follower: example # A follower  - - leader: value2 # A leader  - follower: example # A follower  -leadership_2: # A second leadership  - - leader: value1 # A leader  - follower: # A follower  +leadership_1:  + - leader: value1  + follower: example  + - leader: value2  + follower: example  +leadership_2:  + - leader: value1  + follower:   - value1   - value2  - - leader: value2 # A leader  - follower: # A follower  + - leader: value2  + follower:   - value1   - value2  diff --git a/tests/results/test_examples/41_0choice_leader.adoc b/tests/results/test_examples/41_0choice_leader.adoc index 64a160bbe..ffa759829 100644 --- a/tests/results/test_examples/41_0choice_leader.adoc +++ b/tests/results/test_examples/41_0choice_leader.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -leader: # The leadership - - leader: example # The leader - follower1: a_choice # A follower +leader: + - leader: example + follower1: a_choice ---- diff --git a/tests/results/test_examples/41_0choice_leader.gitlab.md b/tests/results/test_examples/41_0choice_leader.gitlab.md index 8e9e13f7c..56aa90299 100644 --- a/tests/results/test_examples/41_0choice_leader.gitlab.md +++ b/tests/results/test_examples/41_0choice_leader.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -leader: # The leadership - - leader: example # The leader - follower1: a_choice # A follower +leader: + - leader: example + follower1: a_choice ``` diff --git a/tests/results/test_examples/41_0choice_leader.html b/tests/results/test_examples/41_0choice_leader.html index 4b17b94d9..bb694fc04 100644 --- a/tests/results/test_examples/41_0choice_leader.html +++ b/tests/results/test_examples/41_0choice_leader.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
leader:                       # The leadership
-  - leader: example           # The leader
-    follower1: a_choice       # A follower
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: a_choice
\ No newline at end of file diff --git a/tests/results/test_examples/41_0choice_leader.sh b/tests/results/test_examples/41_0choice_leader.sh index 5b82029d8..90a95edf9 100644 --- a/tests/results/test_examples/41_0choice_leader.sh +++ b/tests/results/test_examples/41_0choice_leader.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -leader: # The leadership  - - leader: example # The leader  - follower1: a_choice # A follower  +leader:  + - leader: example  + follower1: a_choice  diff --git a/tests/results/test_examples/44_4disabled_calcultion_follower_index.adoc b/tests/results/test_examples/44_4disabled_calcultion_follower_index.adoc index 56b2467fb..e76605fdb 100644 --- a/tests/results/test_examples/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_examples/44_4disabled_calcultion_follower_index.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -leadership: # A leadership - - leader: a # Aleader - follower: value # A follower - - leader: b # Aleader - follower: value # A follower +leadership: + - leader: a + follower: value + - leader: b + follower: value ---- diff --git a/tests/results/test_examples/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_examples/44_4disabled_calcultion_follower_index.gitlab.md index d9df16e96..120242c65 100644 --- a/tests/results/test_examples/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test_examples/44_4disabled_calcultion_follower_index.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -leadership: # A leadership - - leader: a # Aleader - follower: value # A follower - - leader: b # Aleader - follower: value # A follower +leadership: + - leader: a + follower: value + - leader: b + follower: value ``` diff --git a/tests/results/test_examples/44_4disabled_calcultion_follower_index.html b/tests/results/test_examples/44_4disabled_calcultion_follower_index.html index e623c80b7..49cd4c026 100644 --- a/tests/results/test_examples/44_4disabled_calcultion_follower_index.html +++ b/tests/results/test_examples/44_4disabled_calcultion_follower_index.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
leadership:                   # A leadership
-  - leader: a                 # Aleader
-    follower: value           # A follower
-  - leader: b                 # Aleader
-    follower: value           # A follower
\ No newline at end of file +
leadership:
+  - leader: a
+    follower: value
+  - leader: b
+    follower: value
\ No newline at end of file diff --git a/tests/results/test_examples/44_4disabled_calcultion_follower_index.sh b/tests/results/test_examples/44_4disabled_calcultion_follower_index.sh index e3e999756..9ad212f02 100644 --- a/tests/results/test_examples/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_examples/44_4disabled_calcultion_follower_index.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -leadership: # A leadership  - - leader: a # Aleader  - follower: value # A follower  - - leader: b # Aleader  - follower: value # A follower  +leadership:  + - leader: a  + follower: value  + - leader: b  + follower: value  diff --git a/tests/results/test_examples/44_4leadership_mandatory.adoc b/tests/results/test_examples/44_4leadership_mandatory.adoc index cb7012ab0..019b369c8 100644 --- a/tests/results/test_examples/44_4leadership_mandatory.adoc +++ b/tests/results/test_examples/44_4leadership_mandatory.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader +leader: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower +leader: + - leader: example + follower1: example ---- diff --git a/tests/results/test_examples/44_4leadership_mandatory.gitlab.md b/tests/results/test_examples/44_4leadership_mandatory.gitlab.md index b7674d28b..8ac71e997 100644 --- a/tests/results/test_examples/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test_examples/44_4leadership_mandatory.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader +leader: + - leader: example ``` @@ -11,9 +11,9 @@ leader: # A leadership ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower +leader: + - leader: example + follower1: example ``` diff --git a/tests/results/test_examples/44_4leadership_mandatory.html b/tests/results/test_examples/44_4leadership_mandatory.html index a247b81f5..01d7d489c 100644 --- a/tests/results/test_examples/44_4leadership_mandatory.html +++ b/tests/results/test_examples/44_4leadership_mandatory.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
leader:                       # A leadership
-  - leader: example           # A leader

Example with all variables modifiable

+
leader:
+  - leader: example

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: example
\ No newline at end of file diff --git a/tests/results/test_examples/44_4leadership_mandatory.sh b/tests/results/test_examples/44_4leadership_mandatory.sh index 95818c172..210baf4ee 100644 --- a/tests/results/test_examples/44_4leadership_mandatory.sh +++ b/tests/results/test_examples/44_4leadership_mandatory.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -leader: # A leadership  - - leader: example # A leader  - - +leader:  + - leader: example  Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  +leader:  + - leader: example  + follower1: example  diff --git a/tests/results/test_examples/44_4leadership_mandatory_follower.adoc b/tests/results/test_examples/44_4leadership_mandatory_follower.adoc index 9c3758477..fd0a3570f 100644 --- a/tests/results/test_examples/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_examples/44_4leadership_mandatory_follower.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower: example # A follower +leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_examples/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_examples/44_4leadership_mandatory_follower.gitlab.md index e527403c9..1eb613404 100644 --- a/tests/results/test_examples/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test_examples/44_4leadership_mandatory_follower.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader - follower: example # A follower +leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_examples/44_4leadership_mandatory_follower.html b/tests/results/test_examples/44_4leadership_mandatory_follower.html index d5fa26443..394d8ee3f 100644 --- a/tests/results/test_examples/44_4leadership_mandatory_follower.html +++ b/tests/results/test_examples/44_4leadership_mandatory_follower.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower: example         # A follower
\ No newline at end of file +
leader:
+  - leader: example
+    follower: example
\ No newline at end of file diff --git a/tests/results/test_examples/44_4leadership_mandatory_follower.sh b/tests/results/test_examples/44_4leadership_mandatory_follower.sh index 06fe57206..b22e544e5 100644 --- a/tests/results/test_examples/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_examples/44_4leadership_mandatory_follower.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.adoc index cfe5ad23a..0edf3e3d8 100644 --- a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -condition: no # A condition -leader: # A leadership - - leader: example # A leader - follower: example # A follower +condition: no +leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.gitlab.md index 692986dd6..2233ee386 100644 --- a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -condition: no # A condition -leader: # A leadership - - leader: example # A leader - follower: example # A follower +condition: no +leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.html b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.html index cf193fa88..43081d81a 100644 --- a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.html +++ b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
condition: no                 # A condition
-leader:                       # A leadership
-  - leader: example           # A leader
-    follower: example         # A follower
\ No newline at end of file +
condition: no
+leader:
+  - leader: example
+    follower: example
\ No newline at end of file diff --git a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.sh index 924c192ca..15afe0f6c 100644 --- a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -condition: no # A condition  -leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +condition: no  +leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.adoc index d40d3b17a..78780611e 100644 --- a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower: example # A follower +leader: + - leader: example + follower: example ---- == Example with all variables modifiable [,yaml] ---- --- -condition: yes # A condition -leader: # A leadership - - leader: example # A leader - follower: example # A follower +condition: yes +leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.gitlab.md index 67c04a46f..71360c57b 100644 --- a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader - follower: example # A follower +leader: + - leader: example + follower: example ``` @@ -12,10 +12,10 @@ leader: # A leadership ```yaml --- -condition: yes # A condition -leader: # A leadership - - leader: example # A leader - follower: example # A follower +condition: yes +leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.html b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.html index 6a996356f..8f0d41559 100644 --- a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.html +++ b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower: example         # A follower

Example with all variables modifiable

+
leader:
+  - leader: example
+    follower: example

Example with all variables modifiable

-
condition: yes                # A condition
-leader:                       # A leadership
-  - leader: example           # A leader
-    follower: example         # A follower
\ No newline at end of file +
condition: yes
+leader:
+  - leader: example
+    follower: example
\ No newline at end of file diff --git a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.sh index 91eb17aa5..ff47e227a 100644 --- a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  - - +leader:  + - leader: example  + follower: example  Example with all variables modifiable - ---  -condition: yes # A condition  -leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +condition: yes  +leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_examples/60_0family_dynamic.adoc b/tests/results/test_examples/60_0family_dynamic.adoc index 627048c0c..1a4609ecf 100644 --- a/tests/results/test_examples/60_0family_dynamic.adoc +++ b/tests/results/test_examples/60_0family_dynamic.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic.gitlab.md b/tests/results/test_examples/60_0family_dynamic.gitlab.md index 7956a60f9..84eeb2dc8 100644 --- a/tests/results/test_examples/60_0family_dynamic.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,13 +13,13 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic.html b/tests/results/test_examples/60_0family_dynamic.html index 918d7a06f..ada267626 100644 --- a/tests/results/test_examples/60_0family_dynamic.html +++ b/tests/results/test_examples/60_0family_dynamic.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable
\ No newline at end of file +dynval1: + var: example +dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic.sh b/tests/results/test_examples/60_0family_dynamic.sh index 4241b5109..d1d03135a 100644 --- a/tests/results/test_examples/60_0family_dynamic.sh +++ b/tests/results/test_examples/60_0family_dynamic.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_1_1.adoc b/tests/results/test_examples/60_0family_dynamic_1_1.adoc index 616d09196..b2093b7c0 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_examples/60_0family_dynamic_1_1.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_examples/60_0family_dynamic_1_1.gitlab.md index f49f5fecd..5f8e133cb 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_1_1.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ``` @@ -13,13 +13,13 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_1_1.html b/tests/results/test_examples/60_0family_dynamic_1_1.html index 6bc147a79..08b69343f 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1.html +++ b/tests/results/test_examples/60_0family_dynamic_1_1.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  vardyn: example
+dynval2:
+  vardyn: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable
\ No newline at end of file +dynval1: + vardyn: example +dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_1_1.sh b/tests/results/test_examples/60_0family_dynamic_1_1.sh index 5f7971234..a7153fde3 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1.sh +++ b/tests/results/test_examples/60_0family_dynamic_1_1.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  diff --git a/tests/results/test_examples/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_examples/60_0family_dynamic_1_1_empty.adoc index 616d09196..b2093b7c0 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test_examples/60_0family_dynamic_1_1_empty.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_examples/60_0family_dynamic_1_1_empty.gitlab.md index f49f5fecd..5f8e133cb 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1_empty.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_1_1_empty.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ``` @@ -13,13 +13,13 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_1_1_empty.html b/tests/results/test_examples/60_0family_dynamic_1_1_empty.html index 6bc147a79..08b69343f 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1_empty.html +++ b/tests/results/test_examples/60_0family_dynamic_1_1_empty.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  vardyn: example
+dynval2:
+  vardyn: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable
\ No newline at end of file +dynval1: + vardyn: example +dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_1_1_empty.sh b/tests/results/test_examples/60_0family_dynamic_1_1_empty.sh index 5f7971234..a7153fde3 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_examples/60_0family_dynamic_1_1_empty.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  diff --git a/tests/results/test_examples/60_0family_dynamic_empty.adoc b/tests/results/test_examples/60_0family_dynamic_empty.adoc index 298efdaf6..3e8cfe52f 100644 --- a/tests/results/test_examples/60_0family_dynamic_empty.adoc +++ b/tests/results/test_examples/60_0family_dynamic_empty.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -dynexample: # A dynamic family - var: example # A dynamic variable +dynexample: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - example -dynexample: # A dynamic family - var: example # A dynamic variable +dynexample: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_empty.gitlab.md b/tests/results/test_examples/60_0family_dynamic_empty.gitlab.md index 7600fa7c3..9361e8307 100644 --- a/tests/results/test_examples/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_empty.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -dynexample: # A dynamic family - var: example # A dynamic variable +dynexample: + var: example ``` @@ -11,10 +11,10 @@ dynexample: # A dynamic family ```yaml --- -var: # A suffix variable +var: - example -dynexample: # A dynamic family - var: example # A dynamic variable +dynexample: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_empty.html b/tests/results/test_examples/60_0family_dynamic_empty.html index cf7e701b2..c1a0b309f 100644 --- a/tests/results/test_examples/60_0family_dynamic_empty.html +++ b/tests/results/test_examples/60_0family_dynamic_empty.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
dynexample:                   # A dynamic family
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynexample:
+  var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - example
-dynexample:                   # A dynamic family
-  var: example                # A dynamic variable
\ No newline at end of file +dynexample: + var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_empty.sh b/tests/results/test_examples/60_0family_dynamic_empty.sh index bb79aa85f..bb31739b6 100644 --- a/tests/results/test_examples/60_0family_dynamic_empty.sh +++ b/tests/results/test_examples/60_0family_dynamic_empty.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -dynexample: # A dynamic family  - var: example # A dynamic variable  - - +dynexample:  + var: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - example  -dynexample: # A dynamic family  - var: example # A dynamic variable  +dynexample:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_examples/60_0family_dynamic_forbidden_char.adoc index feb682e31..f067b7e6d 100644 --- a/tests/results/test_examples/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_examples/60_0family_dynamic_forbidden_char.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val.1 - val.2 -dynval_1: # A dynamic family - var1: val.1 # A dynamic variable - var2: val.1 # A dynamic variable -dynval_2: # A dynamic family - var1: val.2 # A dynamic variable - var2: val.2 # A dynamic variable +dynval_1: + var1: val.1 + var2: val.1 +dynval_2: + var1: val.2 + var2: val.2 ---- diff --git a/tests/results/test_examples/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_examples/60_0family_dynamic_forbidden_char.gitlab.md index 6f208b789..fd88f84e3 100644 --- a/tests/results/test_examples/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_forbidden_char.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -var: # A suffix variable +var: - val.1 - val.2 -dynval_1: # A dynamic family - var1: val.1 # A dynamic variable - var2: val.1 # A dynamic variable -dynval_2: # A dynamic family - var1: val.2 # A dynamic variable - var2: val.2 # A dynamic variable +dynval_1: + var1: val.1 + var2: val.1 +dynval_2: + var1: val.2 + var2: val.2 ``` diff --git a/tests/results/test_examples/60_0family_dynamic_forbidden_char.html b/tests/results/test_examples/60_0family_dynamic_forbidden_char.html index 1394f3835..e5678fbf8 100644 --- a/tests/results/test_examples/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test_examples/60_0family_dynamic_forbidden_char.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val.1
   - val.2
-dynval_1:                     # A dynamic family
-  var1: val.1                 # A dynamic variable
-  var2: val.1                 # A dynamic variable
-dynval_2:                     # A dynamic family
-  var1: val.2                 # A dynamic variable
-  var2: val.2                 # A dynamic variable
\ No newline at end of file +dynval_1: + var1: val.1 + var2: val.1 +dynval_2: + var1: val.2 + var2: val.2
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_forbidden_char.sh b/tests/results/test_examples/60_0family_dynamic_forbidden_char.sh index 33e6cab1b..65a7183d8 100644 --- a/tests/results/test_examples/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_examples/60_0family_dynamic_forbidden_char.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val.1   - val.2  -dynval_1: # A dynamic family  - var1: val.1 # A dynamic variable  - var2: val.1 # A dynamic variable  -dynval_2: # A dynamic family  - var1: val.2 # A dynamic variable  - var2: val.2 # A dynamic variable  +dynval_1:  + var1: val.1  + var2: val.1  +dynval_2:  + var1: val.2  + var2: val.2  diff --git a/tests/results/test_examples/60_0family_dynamic_no_description.adoc b/tests/results/test_examples/60_0family_dynamic_no_description.adoc index 4fe72957a..1a4609ecf 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_examples/60_0family_dynamic_no_description.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ---- == Example with all variables modifiable @@ -13,11 +13,11 @@ dynval2: # A dynamic family [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_examples/60_0family_dynamic_no_description.gitlab.md index df45c27ba..84eeb2dc8 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_no_description.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ``` @@ -13,12 +13,12 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_no_description.html b/tests/results/test_examples/60_0family_dynamic_no_description.html index aee048d0d..ada267626 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description.html +++ b/tests/results/test_examples/60_0family_dynamic_no_description.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
+
dynval1:
   var: example
-dynval2:                      # A dynamic family
+dynval2:
   var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
+dynval1:
   var: example
-dynval2:                      # A dynamic family
+dynval2:
   var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_no_description.sh b/tests/results/test_examples/60_0family_dynamic_no_description.sh index c7e9c4ad3..d1d03135a 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description.sh +++ b/tests/results/test_examples/60_0family_dynamic_no_description.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  +dynval1:   var: example  -dynval2: # A dynamic family  +dynval2:   var: example  - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  +dynval1:   var: example  -dynval2: # A dynamic family  +dynval2:   var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_examples/60_0family_dynamic_no_description_empty.adoc index 4fe72957a..1a4609ecf 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test_examples/60_0family_dynamic_no_description_empty.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ---- == Example with all variables modifiable @@ -13,11 +13,11 @@ dynval2: # A dynamic family [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_examples/60_0family_dynamic_no_description_empty.gitlab.md index df45c27ba..84eeb2dc8 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description_empty.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_no_description_empty.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ``` @@ -13,12 +13,12 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family +dynval1: var: example -dynval2: # A dynamic family +dynval2: var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_no_description_empty.html b/tests/results/test_examples/60_0family_dynamic_no_description_empty.html index aee048d0d..ada267626 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description_empty.html +++ b/tests/results/test_examples/60_0family_dynamic_no_description_empty.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
+
dynval1:
   var: example
-dynval2:                      # A dynamic family
+dynval2:
   var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
+dynval1:
   var: example
-dynval2:                      # A dynamic family
+dynval2:
   var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_no_description_empty.sh b/tests/results/test_examples/60_0family_dynamic_no_description_empty.sh index c7e9c4ad3..d1d03135a 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_examples/60_0family_dynamic_no_description_empty.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  +dynval1:   var: example  -dynval2: # A dynamic family  +dynval2:   var: example  - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  +dynval1:   var: example  -dynval2: # A dynamic family  +dynval2:   var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_source_hidden.adoc b/tests/results/test_examples/60_0family_dynamic_source_hidden.adoc index 7ddc1c873..912b5ffd0 100644 --- a/tests/results/test_examples/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_examples/60_0family_dynamic_source_hidden.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_examples/60_0family_dynamic_source_hidden.gitlab.md index 06eaca8ed..3459e3a5e 100644 --- a/tests/results/test_examples/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_source_hidden.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,10 +13,10 @@ dynval2: # A dynamic family ```yaml --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_source_hidden.html b/tests/results/test_examples/60_0family_dynamic_source_hidden.html index f8a41467a..aee4f181b 100644 --- a/tests/results/test_examples/60_0family_dynamic_source_hidden.html +++ b/tests/results/test_examples/60_0family_dynamic_source_hidden.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable
\ No newline at end of file +
dynval1:
+  var: example
+dynval2:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_source_hidden.sh b/tests/results/test_examples/60_0family_dynamic_source_hidden.sh index 0c3c2f498..4393026ad 100644 --- a/tests/results/test_examples/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_examples/60_0family_dynamic_source_hidden.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_static.adoc b/tests/results/test_examples/60_0family_dynamic_static.adoc index 72d7dfba2..912b5ffd0 100644 --- a/tests/results/test_examples/60_0family_dynamic_static.adoc +++ b/tests/results/test_examples/60_0family_dynamic_static.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A variable inside a dynamic family -dynval2: # A dynamic family - var: example # A variable inside a dynamic family +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A variable inside a dynamic family -dynval2: # A dynamic family - var: example # A variable inside a dynamic family +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_static.gitlab.md b/tests/results/test_examples/60_0family_dynamic_static.gitlab.md index b92dfbd59..3459e3a5e 100644 --- a/tests/results/test_examples/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_static.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - var: example # A variable inside a dynamic family -dynval2: # A dynamic family - var: example # A variable inside a dynamic family +dynval1: + var: example +dynval2: + var: example ``` @@ -13,10 +13,10 @@ dynval2: # A dynamic family ```yaml --- -dynval1: # A dynamic family - var: example # A variable inside a dynamic family -dynval2: # A dynamic family - var: example # A variable inside a dynamic family +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_static.html b/tests/results/test_examples/60_0family_dynamic_static.html index 087091b30..aee4f181b 100644 --- a/tests/results/test_examples/60_0family_dynamic_static.html +++ b/tests/results/test_examples/60_0family_dynamic_static.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  var: example                # A variable inside a dynamic family
-dynval2:                      # A dynamic family
-  var: example                # A variable inside a dynamic family

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
dynval1:                      # A dynamic family
-  var: example                # A variable inside a dynamic family
-dynval2:                      # A dynamic family
-  var: example                # A variable inside a dynamic family
\ No newline at end of file +
dynval1:
+  var: example
+dynval2:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_static.sh b/tests/results/test_examples/60_0family_dynamic_static.sh index 1368d997f..4393026ad 100644 --- a/tests/results/test_examples/60_0family_dynamic_static.sh +++ b/tests/results/test_examples/60_0family_dynamic_static.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - var: example # A variable inside a dynamic family  -dynval2: # A dynamic family  - var: example # A variable inside a dynamic family  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -dynval1: # A dynamic family  - var: example # A variable inside a dynamic family  -dynval2: # A dynamic family  - var: example # A variable inside a dynamic family  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_test.adoc b/tests/results/test_examples/60_0family_dynamic_test.adoc index 95a3a2975..366e40460 100644 --- a/tests/results/test_examples/60_0family_dynamic_test.adoc +++ b/tests/results/test_examples/60_0family_dynamic_test.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_test.gitlab.md b/tests/results/test_examples/60_0family_dynamic_test.gitlab.md index f2f6bef21..e14196ea4 100644 --- a/tests/results/test_examples/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_test.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -16,13 +16,13 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_test.html b/tests/results/test_examples/60_0family_dynamic_test.html index e7589f34d..092b205cd 100644 --- a/tests/results/test_examples/60_0family_dynamic_test.html +++ b/tests/results/test_examples/60_0family_dynamic_test.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable

Example with all variables modifiable

+dynval1: + var: example +dynval2: + var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable
\ No newline at end of file +dynval1: + var: example +dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_test.sh b/tests/results/test_examples/60_0family_dynamic_test.sh index 63b705e2a..74d6e356e 100644 --- a/tests/results/test_examples/60_0family_dynamic_test.sh +++ b/tests/results/test_examples/60_0family_dynamic_test.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_upper_char.adoc b/tests/results/test_examples/60_0family_dynamic_upper_char.adoc index 8c6b3723e..a97eebde9 100644 --- a/tests/results/test_examples/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_examples/60_0family_dynamic_upper_char.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - Val1 - VAL2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_examples/60_0family_dynamic_upper_char.gitlab.md index 4dccc3af3..595272e10 100644 --- a/tests/results/test_examples/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_upper_char.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,13 +13,13 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - Val1 - VAL2 -dynval1: # A dynamic family - var: example # A dynamic variable -dynval2: # A dynamic family - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_0family_dynamic_upper_char.html b/tests/results/test_examples/60_0family_dynamic_upper_char.html index 9b5102400..f6cf50c25 100644 --- a/tests/results/test_examples/60_0family_dynamic_upper_char.html +++ b/tests/results/test_examples/60_0family_dynamic_upper_char.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - Val1
   - VAL2
-dynval1:                      # A dynamic family
-  var: example                # A dynamic variable
-dynval2:                      # A dynamic family
-  var: example                # A dynamic variable
\ No newline at end of file +dynval1: + var: example +dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_upper_char.sh b/tests/results/test_examples/60_0family_dynamic_upper_char.sh index af0276fa9..2b697826a 100644 --- a/tests/results/test_examples/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_examples/60_0family_dynamic_upper_char.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - Val1   - VAL2  -dynval1: # A dynamic family  - var: example # A dynamic variable  -dynval2: # A dynamic family  - var: example # A dynamic variable  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_0family_dynamic_variable_empty.adoc b/tests/results/test_examples/60_0family_dynamic_variable_empty.adoc index d7addc9ab..86eadc0b9 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_examples/60_0family_dynamic_variable_empty.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var: # A suffix variable +var: - example ---- == Example with all variables modifiable @@ -11,8 +11,8 @@ var: # A suffix variable [,yaml] ---- --- -var: # A suffix variable +var: - example -dynexample: # A dynamic family - var: val # A variable inside dynamic family +dynexample: + var: val ---- diff --git a/tests/results/test_examples/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_examples/60_0family_dynamic_variable_empty.gitlab.md index 1bba2c188..251e245e9 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_empty.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: # A suffix variable +var: - example ``` @@ -11,10 +11,10 @@ var: # A suffix variable ```yaml --- -var: # A suffix variable +var: - example -dynexample: # A dynamic family - var: val # A variable inside dynamic family +dynexample: + var: val ``` diff --git a/tests/results/test_examples/60_0family_dynamic_variable_empty.html b/tests/results/test_examples/60_0family_dynamic_variable_empty.html index 605ae8ca9..bd4a3c7cc 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_empty.html +++ b/tests/results/test_examples/60_0family_dynamic_variable_empty.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
var:                          # A suffix variable
+
var:
   - example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - example
-dynexample:                   # A dynamic family
-  var: val                    # A variable inside dynamic family
\ No newline at end of file +dynexample: + var: val
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_variable_empty.sh b/tests/results/test_examples/60_0family_dynamic_variable_empty.sh index 087ebaecd..5c37fd634 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_examples/60_0family_dynamic_variable_empty.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -var: # A suffix variable  +var:   - example  - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - example  -dynexample: # A dynamic family  - var: val # A variable inside dynamic family  +dynexample:  + var: val  diff --git a/tests/results/test_examples/60_0family_dynamic_variable_optional.adoc b/tests/results/test_examples/60_0family_dynamic_variable_optional.adoc index bffe21931..f7076be82 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_examples/60_0family_dynamic_variable_optional.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -dyna: # A dynamic family - var: val # A variable inside dynamic family -dynb: # A dynamic family - var: val # A variable inside dynamic family +dyna: + var: val +dynb: + var: val ---- diff --git a/tests/results/test_examples/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_examples/60_0family_dynamic_variable_optional.gitlab.md index 5f78be344..c41b56b2a 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_optional.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dyna: # A dynamic family - var: val # A variable inside dynamic family -dynb: # A dynamic family - var: val # A variable inside dynamic family +dyna: + var: val +dynb: + var: val ``` diff --git a/tests/results/test_examples/60_0family_dynamic_variable_optional.html b/tests/results/test_examples/60_0family_dynamic_variable_optional.html index cbbcff380..5690d397f 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_optional.html +++ b/tests/results/test_examples/60_0family_dynamic_variable_optional.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
dyna:                         # A dynamic family
-  var: val                    # A variable inside dynamic family
-dynb:                         # A dynamic family
-  var: val                    # A variable inside dynamic family
\ No newline at end of file +
dyna:
+  var: val
+dynb:
+  var: val
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_variable_optional.sh b/tests/results/test_examples/60_0family_dynamic_variable_optional.sh index 2845976dc..d0bf10c90 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_examples/60_0family_dynamic_variable_optional.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -dyna: # A dynamic family  - var: val # A variable inside dynamic family  -dynb: # A dynamic family  - var: val # A variable inside dynamic family  +dyna:  + var: val  +dynb:  + var: val  diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_examples/60_0family_dynamic_variable_suffix.adoc index 4e47269eb..9c40ea36a 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} -dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} +dynval1: + var: a value +dynval2: + var: a value ---- diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_examples/60_0family_dynamic_variable_suffix.gitlab.md index 777ffc52d..317db76b3 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} -dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} +dynval1: + var: a value +dynval2: + var: a value ``` diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix.html b/tests/results/test_examples/60_0family_dynamic_variable_suffix.html index 4b8147f2b..7d2d01fdf 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: a value                # A dynamic variable with suffix {{ identifier }}
-dynval2:                      # A dynamic family
-  var: a value                # A dynamic variable with suffix {{ identifier }}
\ No newline at end of file +dynval1: + var: a value +dynval2: + var: a value
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix.sh b/tests/results/test_examples/60_0family_dynamic_variable_suffix.sh index 6ab873193..0c669fa23 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  -dynval2: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  +dynval1:  + var: a value  +dynval2:  + var: a value  diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.adoc index 1e29784ce..7c2aec3a1 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 ---- @@ -12,11 +12,11 @@ var: # A suffix variable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} -dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} +dynval1: + var: a value +dynval2: + var: a value ---- diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md index 34d12c60c..ba680447e 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 ``` @@ -12,13 +12,13 @@ var: # A suffix variable ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} -dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} +dynval1: + var: a value +dynval2: + var: a value ``` diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.html b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.html index 9ab1702a0..bff4c169f 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.html +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
var:                          # A suffix variable
+
var:
   - val1
   - val2

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: a value                # A dynamic variable with suffix {{ identifier }}
-dynval2:                      # A dynamic family
-  var: a value                # A dynamic variable with suffix {{ identifier }}
\ No newline at end of file +dynval1: + var: a value +dynval2: + var: a value
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.sh index 04fb82e82..73656d5a0 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -var: # A suffix variable  +var:   - val1   - val2  - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  -dynval2: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  +dynval1:  + var: a value  +dynval2:  + var: a value  diff --git a/tests/results/test_examples/60_0family_mode.adoc b/tests/results/test_examples/60_0family_mode.adoc index 8a8682239..fea514c92 100644 --- a/tests/results/test_examples/60_0family_mode.adoc +++ b/tests/results/test_examples/60_0family_mode.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -family: # A family - var: non # A variable +family: + var: non ---- diff --git a/tests/results/test_examples/60_0family_mode.gitlab.md b/tests/results/test_examples/60_0family_mode.gitlab.md index d853ad699..98bc22122 100644 --- a/tests/results/test_examples/60_0family_mode.gitlab.md +++ b/tests/results/test_examples/60_0family_mode.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -family: # A family - var: non # A variable +family: + var: non ``` diff --git a/tests/results/test_examples/60_0family_mode.html b/tests/results/test_examples/60_0family_mode.html index 73397e46e..6298947a5 100644 --- a/tests/results/test_examples/60_0family_mode.html +++ b/tests/results/test_examples/60_0family_mode.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
family:                       # A family
-  var: non                    # A variable
\ No newline at end of file +
family:
+  var: non
\ No newline at end of file diff --git a/tests/results/test_examples/60_0family_mode.sh b/tests/results/test_examples/60_0family_mode.sh index f9d1efacb..25217cae3 100644 --- a/tests/results/test_examples/60_0family_mode.sh +++ b/tests/results/test_examples/60_0family_mode.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -family: # A family  - var: non # A variable  +family:  + var: non  diff --git a/tests/results/test_examples/60_1family_dynamic_jinja.adoc b/tests/results/test_examples/60_1family_dynamic_jinja.adoc index 300222e21..84eb78940 100644 --- a/tests/results/test_examples/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_examples/60_1family_dynamic_jinja.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dyn1: # A dynamic family - var: val # A dynamic variable -dyn2: # A dynamic family - var: val # A dynamic variable +dyn1: + var: val +dyn2: + var: val ---- diff --git a/tests/results/test_examples/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_examples/60_1family_dynamic_jinja.gitlab.md index c861ecf64..e53ea5780 100644 --- a/tests/results/test_examples/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test_examples/60_1family_dynamic_jinja.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dyn1: # A dynamic family - var: val # A dynamic variable -dyn2: # A dynamic family - var: val # A dynamic variable +dyn1: + var: val +dyn2: + var: val ``` diff --git a/tests/results/test_examples/60_1family_dynamic_jinja.html b/tests/results/test_examples/60_1family_dynamic_jinja.html index cc3d5473f..38b372174 100644 --- a/tests/results/test_examples/60_1family_dynamic_jinja.html +++ b/tests/results/test_examples/60_1family_dynamic_jinja.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dyn1:                         # A dynamic family
-  var: val                    # A dynamic variable
-dyn2:                         # A dynamic family
-  var: val                    # A dynamic variable
\ No newline at end of file +dyn1: + var: val +dyn2: + var: val
\ No newline at end of file diff --git a/tests/results/test_examples/60_1family_dynamic_jinja.sh b/tests/results/test_examples/60_1family_dynamic_jinja.sh index fe232befe..0651bad3b 100644 --- a/tests/results/test_examples/60_1family_dynamic_jinja.sh +++ b/tests/results/test_examples/60_1family_dynamic_jinja.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dyn1: # A dynamic family  - var: val # A dynamic variable  -dyn2: # A dynamic family  - var: val # A dynamic variable  +dyn1:  + var: val  +dyn2:  + var: val  diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.adoc index 617afa803..823fa884d 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -3,26 +3,26 @@ [,yaml] ---- --- -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable +dynval1: + family: + var: example +dynval2: + family: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable -var2: example # A second variable +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example ---- diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md index 62da507ce..d7709d614 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable +dynval1: + family: + var: example +dynval2: + family: + var: example ``` @@ -15,16 +15,16 @@ dynval2: # A dynamic family ```yaml --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable -var2: example # A second variable +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example ``` diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.html index e862d2b34..a12d645ec 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.html +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.html @@ -1,19 +1,19 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-dynval2:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable

Example with all variables modifiable

+
dynval1:
+  family:
+    var: example
+dynval2:
+  family:
+    var: example

Example with all variables modifiable

-
var1:                         # A suffix variable
+
var1:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-dynval2:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-var2: example                 # A second variable
\ No newline at end of file +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.sh index d688564ef..6be280de2 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,30 +1,24 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  -dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - - +dynval1:  + family:  + var: example  +dynval2:  + family:  + var: example  Example with all variables modifiable - ---  -var1: # A suffix variable  +var1:   - val1   - val2  -dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  -dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  -var2: example # A second variable  +dynval1:  + family:  + var: example  +dynval2:  + family:  + var: example  +var2: example  diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc index 9ad070c1d..ef6bb999f 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable -var2: val1 # A varible outside dynamic family +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1 ---- diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index e883df74f..eef0fb3f5 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md @@ -2,16 +2,16 @@ ```yaml --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable -var2: val1 # A varible outside dynamic family +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1 ``` diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.html b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.html index a80455cfa..e0b8b4231 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.html +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
var:                          # A identifier variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  family:                     # A family inside dynamic family
-    var: val1                 # A dynamic variable
-dynval2:                      # A dynamic family
-  family:                     # A family inside dynamic family
-    var: val2                 # A dynamic variable
-var2: val1                    # A varible outside dynamic family
\ No newline at end of file +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh index 1417ec8aa..96619df4e 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -var: # A identifier variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - family: # A family inside dynamic family  - var: val1 # A dynamic variable  -dynval2: # A dynamic family  - family: # A family inside dynamic family  - var: val2 # A dynamic variable  -var2: val1 # A varible outside dynamic family  +dynval1:  + family:  + var: val1  +dynval2:  + family:  + var: val2  +var2: val1  diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index 9ad070c1d..ef6bb999f 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable -var2: val1 # A varible outside dynamic family +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1 ---- diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index e883df74f..eef0fb3f5 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md @@ -2,16 +2,16 @@ ```yaml --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable -var2: val1 # A varible outside dynamic family +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1 ``` diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html index a80455cfa..e0b8b4231 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
var:                          # A identifier variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  family:                     # A family inside dynamic family
-    var: val1                 # A dynamic variable
-dynval2:                      # A dynamic family
-  family:                     # A family inside dynamic family
-    var: val2                 # A dynamic variable
-var2: val1                    # A varible outside dynamic family
\ No newline at end of file +dynval1: + family: + var: val1 +dynval2: + family: + var: val2 +var2: val1
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 1417ec8aa..96619df4e 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -var: # A identifier variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - family: # A family inside dynamic family  - var: val1 # A dynamic variable  -dynval2: # A dynamic family  - family: # A family inside dynamic family  - var: val2 # A dynamic variable  -var2: val1 # A varible outside dynamic family  +dynval1:  + family:  + var: val1  +dynval2:  + family:  + var: val2  +var2: val1  diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index 617afa803..823fa884d 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -3,26 +3,26 @@ [,yaml] ---- --- -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable +dynval1: + family: + var: example +dynval2: + family: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable -var2: example # A second variable +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example ---- diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index 62da507ce..d7709d614 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable +dynval1: + family: + var: example +dynval2: + family: + var: example ``` @@ -15,16 +15,16 @@ dynval2: # A dynamic family ```yaml --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # A dynamic family - family: # A family - var: example # With a variable -dynval2: # A dynamic family - family: # A family - var: example # With a variable -var2: example # A second variable +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example ``` diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html index e862d2b34..a12d645ec 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html @@ -1,19 +1,19 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-dynval2:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable

Example with all variables modifiable

+
dynval1:
+  family:
+    var: example
+dynval2:
+  family:
+    var: example

Example with all variables modifiable

-
var1:                         # A suffix variable
+
var1:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-dynval2:                      # A dynamic family
-  family:                     # A family
-    var: example              # With a variable
-var2: example                 # A second variable
\ No newline at end of file +dynval1: + family: + var: example +dynval2: + family: + var: example +var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh index d688564ef..6be280de2 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,30 +1,24 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  -dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - - +dynval1:  + family:  + var: example  +dynval2:  + family:  + var: example  Example with all variables modifiable - ---  -var1: # A suffix variable  +var1:   - val1   - val2  -dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  -dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  -var2: example # A second variable  +dynval1:  + family:  + var: example  +dynval2:  + family:  + var: example  +var2: example  diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc.adoc b/tests/results/test_examples/60_2family_dynamic_outside_calc.adoc index 0cf12a595..819977963 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var1: # A suffx variable +var1: - val1 - val2 -dynval1: # A dynamic family - var: val # A dynamic variable -dynval2: # A dynamic family - var: val # A dynamic variable -newvar: val # A second variable +dynval1: + var: val +dynval2: + var: val +newvar: val ---- diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_examples/60_2family_dynamic_outside_calc.gitlab.md index 2ff6885ad..49c0fb6b7 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -var1: # A suffx variable +var1: - val1 - val2 -dynval1: # A dynamic family - var: val # A dynamic variable -dynval2: # A dynamic family - var: val # A dynamic variable -newvar: val # A second variable +dynval1: + var: val +dynval2: + var: val +newvar: val ``` diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc.html b/tests/results/test_examples/60_2family_dynamic_outside_calc.html index bdeb5df8b..ac8361923 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc.html +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
var1:                         # A suffx variable
+
var1:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val                    # A dynamic variable
-dynval2:                      # A dynamic family
-  var: val                    # A dynamic variable
-newvar: val                   # A second variable
\ No newline at end of file +dynval1: + var: val +dynval2: + var: val +newvar: val
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc.sh b/tests/results/test_examples/60_2family_dynamic_outside_calc.sh index 81f251b01..d76987d4d 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -var1: # A suffx variable  +var1:   - val1   - val2  -dynval1: # A dynamic family  - var: val # A dynamic variable  -dynval2: # A dynamic family  - var: val # A dynamic variable  -newvar: val # A second variable  +dynval1:  + var: val  +dynval2:  + var: val  +newvar: val  diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.adoc index 0cf12a595..819977963 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var1: # A suffx variable +var1: - val1 - val2 -dynval1: # A dynamic family - var: val # A dynamic variable -dynval2: # A dynamic family - var: val # A dynamic variable -newvar: val # A second variable +dynval1: + var: val +dynval2: + var: val +newvar: val ---- diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.gitlab.md index 2ff6885ad..49c0fb6b7 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.gitlab.md +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -var1: # A suffx variable +var1: - val1 - val2 -dynval1: # A dynamic family - var: val # A dynamic variable -dynval2: # A dynamic family - var: val # A dynamic variable -newvar: val # A second variable +dynval1: + var: val +dynval2: + var: val +newvar: val ``` diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.html b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.html index bdeb5df8b..ac8361923 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.html +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
var1:                         # A suffx variable
+
var1:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val                    # A dynamic variable
-dynval2:                      # A dynamic family
-  var: val                    # A dynamic variable
-newvar: val                   # A second variable
\ No newline at end of file +dynval1: + var: val +dynval2: + var: val +newvar: val
\ No newline at end of file diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.sh index 81f251b01..d76987d4d 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -var1: # A suffx variable  +var1:   - val1   - val2  -dynval1: # A dynamic family  - var: val # A dynamic variable  -dynval2: # A dynamic family  - var: val # A dynamic variable  -newvar: val # A second variable  +dynval1:  + var: val  +dynval2:  + var: val  +newvar: val  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.adoc index 2c250d76c..9224ce50f 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # Suffix has value -dynval2: # A dynamic family - var: val2 # Suffix has value +dynval1: + var: val1 +dynval2: + var: val2 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.gitlab.md index ed2c3f5ef..3419e25a1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # Suffix has value -dynval2: # A dynamic family - var: val2 # Suffix has value +dynval1: + var: val1 +dynval2: + var: val2 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.html b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.html index 31d254e85..2932b00f9 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val1                   # Suffix has value
-dynval2:                      # A dynamic family
-  var: val2                   # Suffix has value
\ No newline at end of file +dynval1: + var: val1 +dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.sh index 4225ab324..06e7be54a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: val1 # Suffix has value  -dynval2: # A dynamic family  - var: val2 # Suffix has value  +dynval1:  + var: val1  +dynval2:  + var: val2  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.adoc index 2c250d76c..9224ce50f 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # Suffix has value -dynval2: # A dynamic family - var: val2 # Suffix has value +dynval1: + var: val1 +dynval2: + var: val2 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md index ed2c3f5ef..3419e25a1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # Suffix has value -dynval2: # A dynamic family - var: val2 # Suffix has value +dynval1: + var: val1 +dynval2: + var: val2 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.html b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.html index 31d254e85..2932b00f9 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val1                   # Suffix has value
-dynval2:                      # A dynamic family
-  var: val2                   # Suffix has value
\ No newline at end of file +dynval1: + var: val1 +dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.sh index 4225ab324..06e7be54a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: val1 # Suffix has value  -dynval2: # A dynamic family  - var: val2 # Suffix has value  +dynval1:  + var: val1  +dynval2:  + var: val2  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.adoc b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.adoc index 0d37a826a..912b5ffd0 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md index 79fe4d71f..3459e3a5e 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,10 +13,10 @@ dynval2: # dyn{{ identifier }} ```yaml --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.html b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.html index e452ff976..aee4f181b 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
\ No newline at end of file +
dynval1:
+  var: example
+dynval2:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.sh index d040c08d7..4393026ad 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  +dynval1:  + var: example  +dynval2:  + var: example  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.adoc index 446dfd53c..9224ce50f 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - var: val2 # A dynamic variable +dynval1: + var: val1 +dynval2: + var: val2 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.gitlab.md index 698395e26..3419e25a1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - var: val2 # A dynamic variable +dynval1: + var: val1 +dynval2: + var: val2 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.html b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.html index 892399806..2932b00f9 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A identifier variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val1                   # A dynamic variable
-dynval2:                      # A dynamic family
-  var: val2                   # A dynamic variable
\ No newline at end of file +dynval1: + var: val1 +dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.sh index d7ec4a209..06e7be54a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A identifier variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: val1 # A dynamic variable  -dynval2: # A dynamic family  - var: val2 # A dynamic variable  +dynval1:  + var: val1  +dynval2:  + var: val2  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.adoc index 446dfd53c..9224ce50f 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - var: val2 # A dynamic variable +dynval1: + var: val1 +dynval2: + var: val2 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md index 698395e26..3419e25a1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -var: # A identifier variable +var: - val1 - val2 -dynval1: # A dynamic family - var: val1 # A dynamic variable -dynval2: # A dynamic family - var: val2 # A dynamic variable +dynval1: + var: val1 +dynval2: + var: val2 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.html b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.html index 892399806..2932b00f9 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
var:                          # A identifier variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  var: val1                   # A dynamic variable
-dynval2:                      # A dynamic family
-  var: val2                   # A dynamic variable
\ No newline at end of file +dynval1: + var: val1 +dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.sh index d7ec4a209..06e7be54a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -var: # A identifier variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - var: val1 # A dynamic variable  -dynval2: # A dynamic family  - var: val2 # A dynamic variable  +dynval1:  + var: val1  +dynval2:  + var: val2  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable.adoc b/tests/results/test_examples/60_5family_dynamic_calc_variable.adoc index 2451df6fc..66bd4dd5a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable -var2: example # A variable calculated +dynval1: + var: example +dynval2: + var: example +var2: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_variable.gitlab.md index 2982fa984..05d334297 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,14 +13,14 @@ dynval2: # dyn{{ identifier }} ```yaml --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable -var2: example # A variable calculated +dynval1: + var: example +dynval2: + var: example +var2: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable.html b/tests/results/test_examples/60_5family_dynamic_calc_variable.html index d2e90eac2..d7c96cf30 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
var1:                         # A suffix variable
+
var1:
   - val1
   - val2
-dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-var2: example                 # A variable calculated
\ No newline at end of file +dynval1: + var: example +dynval2: + var: example +var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable.sh b/tests/results/test_examples/60_5family_dynamic_calc_variable.sh index a65170619..b004ab13e 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -var1: # A suffix variable  +var1:   - val1   - val2  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  -var2: example # A variable calculated  +dynval1:  + var: example  +dynval2:  + var: example  +var2: example  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.adoc index 127480d07..5a64fadc1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +dynval1: + var1: example + var2: example +dynval2: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +dynval1: + var1: example + var2: example +dynval2: + var1: example + var2: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md index 5bc4745cb..feb2ce9cc 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +dynval1: + var1: example + var2: example +dynval2: + var1: example + var2: example ``` @@ -15,12 +15,12 @@ dynval2: # A dynamic famify for {{ identifier }} ```yaml --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +dynval1: + var1: example + var2: example +dynval2: + var1: example + var2: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.html index e6753afef..5a09b1609 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-  var2: example               # A new variable
-dynval2:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-  var2: example               # A new variable

Example with all variables modifiable

+
dynval1:
+  var1: example
+  var2: example
+dynval2:
+  var1: example
+  var2: example

Example with all variables modifiable

-
dynval1:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-  var2: example               # A new variable
-dynval2:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-  var2: example               # A new variable
\ No newline at end of file +
dynval1:
+  var1: example
+  var2: example
+dynval2:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.sh index 20b614584..171301413 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  -dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  - - +dynval1:  + var1: example  + var2: example  +dynval2:  + var1: example  + var2: example  Example with all variables modifiable - ---  -dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  -dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  +dynval1:  + var1: example  + var2: example  +dynval2:  + var1: example  + var2: example  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc index 6cc486a6b..5fd099855 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -var2: example # A new variable +dynval1: + var1: example +dynval2: + var1: example +var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -var2: example # A new variable +dynval1: + var1: example +dynval2: + var1: example +var2: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md index aa6e4e8d8..3dc2ba786 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -var2: example # A new variable +dynval1: + var1: example +dynval2: + var1: example +var2: example ``` @@ -14,11 +14,11 @@ var2: example # A new variable ```yaml --- -dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable -var2: example # A new variable +dynval1: + var1: example +dynval2: + var1: example +var2: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.html index e635ea3dc..54aa34bb1 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-dynval2:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-var2: example                 # A new variable

Example with all variables modifiable

+
dynval1:
+  var1: example
+dynval2:
+  var1: example
+var2: example

Example with all variables modifiable

-
dynval1:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-dynval2:                      # A dynamic famify for {{ identifier }}
-  var1: example               # A dynamic variable
-var2: example                 # A new variable
\ No newline at end of file +
dynval1:
+  var1: example
+dynval2:
+  var1: example
+var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.sh index 089152747..0636809ae 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  -dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  -var2: example # A new variable  - - +dynval1:  + var1: example  +dynval2:  + var1: example  +var2: example  Example with all variables modifiable - ---  -dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  -dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  -var2: example # A new variable  +dynval1:  + var1: example  +dynval2:  + var1: example  +var2: example  diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.adoc index 2451df6fc..66bd4dd5a 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable -var2: example # A variable calculated +dynval1: + var: example +dynval2: + var: example +var2: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.gitlab.md index 2982fa984..05d334297 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +dynval1: + var: example +dynval2: + var: example ``` @@ -13,14 +13,14 @@ dynval2: # dyn{{ identifier }} ```yaml --- -var1: # A suffix variable +var1: - val1 - val2 -dynval1: # dyn{{ identifier }} - var: example # A dynamic variable -dynval2: # dyn{{ identifier }} - var: example # A dynamic variable -var2: example # A variable calculated +dynval1: + var: example +dynval2: + var: example +var2: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.html index d2e90eac2..d7c96cf30 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.html +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  var: example
+dynval2:
+  var: example

Example with all variables modifiable

-
var1:                         # A suffix variable
+
var1:
   - val1
   - val2
-dynval1:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-dynval2:                      # dyn{{ identifier }}
-  var: example                # A dynamic variable
-var2: example                 # A variable calculated
\ No newline at end of file +dynval1: + var: example +dynval2: + var: example +var2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.sh index a65170619..b004ab13e 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +dynval1:  + var: example  +dynval2:  + var: example  Example with all variables modifiable - ---  -var1: # A suffix variable  +var1:   - val1   - val2  -dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  -dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  -var2: example # A variable calculated  +dynval1:  + var: example  +dynval2:  + var: example  +var2: example  diff --git a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.adoc b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.adoc index 70c2cc8f6..99127c1a1 100644 --- a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -dynval1: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable -dynval2: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable +dynval1: + var: example + family: + var: example +dynval2: + var: example + family: + var: example ---- diff --git a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.gitlab.md index e895f6a79..088310758 100644 --- a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -dynval1: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable -dynval2: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable +dynval1: + var: example + family: + var: example +dynval2: + var: example + family: + var: example ``` diff --git a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.html b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.html index 722551235..c84a08c53 100644 --- a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
dynval1:                      # A dynamic family
-  var: example                # A variable
-  family:                     # A family
-    var: example              # A new variable
-dynval2:                      # A dynamic family
-  var: example                # A variable
-  family:                     # A family
-    var: example              # A new variable
\ No newline at end of file +
dynval1:
+  var: example
+  family:
+    var: example
+dynval2:
+  var: example
+  family:
+    var: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.sh index 73b674189..243a68aae 100644 --- a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -dynval1: # A dynamic family  - var: example # A variable  - family: # A family  - var: example # A new variable  -dynval2: # A dynamic family  - var: example # A variable  - family: # A family  - var: example # A new variable  +dynval1:  + var: example  + family:  + var: example  +dynval2:  + var: example  + family:  + var: example  diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.adoc index 0744c6a57..403709545 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family -dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family -var2: val1 # A variable +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md index 1c493fe8e..62b12db5e 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family -dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family -var2: val1 # A variable +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.html index 98ed69e95..2e1d01e92 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.html +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dyn_val1:                     # A dynamic family
-  var: val1                   # A variable inside dynamic family
-dyn_val2:                     # A dynamic family
-  var: val2                   # A variable inside dynamic family
-var2: val1                    # A variable
\ No newline at end of file +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.sh index 93f78d41d..fe1576a75 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dyn_val1: # A dynamic family  - var: val1 # A variable inside dynamic family  -dyn_val2: # A dynamic family  - var: val2 # A variable inside dynamic family  -var2: val1 # A variable  +dyn_val1:  + var: val1  +dyn_val2:  + var: val2  +var2: val1  diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc index 396a5485b..403709545 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -var: # Asuffix variable +var: - val1 - val2 -dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family -dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family -var2: val1 # A variable +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1 ---- diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 47b445866..62b12db5e 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -var: # Asuffix variable +var: - val1 - val2 -dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family -dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family -var2: val1 # A variable +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1 ``` diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.html index 12a71b7b5..2e1d01e92 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.html +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
var:                          # Asuffix variable
+
var:
   - val1
   - val2
-dyn_val1:                     # A dynamic family
-  var: val1                   # A variable inside dynamic family
-dyn_val2:                     # A dynamic family
-  var: val2                   # A variable inside dynamic family
-var2: val1                    # A variable
\ No newline at end of file +dyn_val1: + var: val1 +dyn_val2: + var: val2 +var2: val1
\ No newline at end of file diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.sh index 42b4f0d16..fe1576a75 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -var: # Asuffix variable  +var:   - val1   - val2  -dyn_val1: # A dynamic family  - var: val1 # A variable inside dynamic family  -dyn_val2: # A dynamic family  - var: val2 # A variable inside dynamic family  -var2: val1 # A variable  +dyn_val1:  + var: val1  +dyn_val2:  + var: val2  +var2: val1  diff --git a/tests/results/test_examples/60_6family_dynamic_leadership.adoc b/tests/results/test_examples/60_6family_dynamic_leadership.adoc index 868779671..4ad43c31a 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_examples/60_6family_dynamic_leadership.adoc @@ -3,29 +3,29 @@ [,yaml] ---- --- -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +dynval1: + leadership: + - leader: example +dynval2: + leadership: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_examples/60_6family_dynamic_leadership.gitlab.md index 30bbc2a9a..9b2bf7909 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test_examples/60_6family_dynamic_leadership.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +dynval1: + leadership: + - leader: example +dynval2: + leadership: + - leader: example ``` @@ -15,19 +15,19 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/60_6family_dynamic_leadership.html b/tests/results/test_examples/60_6family_dynamic_leadership.html index 2debd09ac..03c2a1685 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership.html +++ b/tests/results/test_examples/60_6family_dynamic_leadership.html @@ -1,22 +1,22 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-dynval2:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader

Example with all variables modifiable

+
dynval1:
+  leadership:
+    - leader: example
+dynval2:
+  leadership:
+    - leader: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower1
-      follower2: example      # A follower2
-dynval2:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower1
-      follower2: example      # A follower2
\ No newline at end of file +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_6family_dynamic_leadership.sh b/tests/results/test_examples/60_6family_dynamic_leadership.sh index 95f78963e..4168d96db 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership.sh +++ b/tests/results/test_examples/60_6family_dynamic_leadership.sh @@ -1,33 +1,27 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  -dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - - +dynval1:  + leadership:  + - leader: example  +dynval2:  + leadership:  + - leader: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  -dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  +dynval1:  + leadership:  + - leader: example  + follower1: example  + follower2: example  +dynval2:  + leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_examples/60_6family_dynamic_leadership_empty.adoc index 868779671..4ad43c31a 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_examples/60_6family_dynamic_leadership_empty.adoc @@ -3,29 +3,29 @@ [,yaml] ---- --- -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +dynval1: + leadership: + - leader: example +dynval2: + leadership: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_examples/60_6family_dynamic_leadership_empty.gitlab.md index 30bbc2a9a..9b2bf7909 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test_examples/60_6family_dynamic_leadership_empty.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +dynval1: + leadership: + - leader: example +dynval2: + leadership: + - leader: example ``` @@ -15,19 +15,19 @@ dynval2: # A dynamic family ```yaml --- -var: # A suffix variable +var: - val1 - val2 -dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 -dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/60_6family_dynamic_leadership_empty.html b/tests/results/test_examples/60_6family_dynamic_leadership_empty.html index 2debd09ac..03c2a1685 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test_examples/60_6family_dynamic_leadership_empty.html @@ -1,22 +1,22 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-dynval2:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader

Example with all variables modifiable

+
dynval1:
+  leadership:
+    - leader: example
+dynval2:
+  leadership:
+    - leader: example

Example with all variables modifiable

-
var:                          # A suffix variable
+
var:
   - val1
   - val2
-dynval1:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower1
-      follower2: example      # A follower2
-dynval2:                      # A dynamic family
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower1
-      follower2: example      # A follower2
\ No newline at end of file +dynval1: + leadership: + - leader: example + follower1: example + follower2: example +dynval2: + leadership: + - leader: example + follower1: example + follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_6family_dynamic_leadership_empty.sh b/tests/results/test_examples/60_6family_dynamic_leadership_empty.sh index 95f78963e..4168d96db 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_examples/60_6family_dynamic_leadership_empty.sh @@ -1,33 +1,27 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  -dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - - +dynval1:  + leadership:  + - leader: example  +dynval2:  + leadership:  + - leader: example  Example with all variables modifiable - ---  -var: # A suffix variable  +var:   - val1   - val2  -dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  -dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  +dynval1:  + leadership:  + - leader: example  + follower1: example  + follower2: example  +dynval2:  + leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples/60_9family_dynamic_calc_both.adoc b/tests/results/test_examples/60_9family_dynamic_calc_both.adoc index 882ff05dd..96a3b7941 100644 --- a/tests/results/test_examples/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_examples/60_9family_dynamic_calc_both.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -var: val2 # A suffix variable -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +var: val2 +dynval1: + vardyn: example +dynval2: + vardyn: example ---- diff --git a/tests/results/test_examples/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_examples/60_9family_dynamic_calc_both.gitlab.md index 8007f11d0..8dfe9fcef 100644 --- a/tests/results/test_examples/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test_examples/60_9family_dynamic_calc_both.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +dynval1: + vardyn: example +dynval2: + vardyn: example ``` @@ -13,11 +13,11 @@ dynval2: # A dynamic family ```yaml --- -var: val2 # A suffix variable -dynval1: # A dynamic family - vardyn: example # A dynamic variable -dynval2: # A dynamic family - vardyn: example # A dynamic variable +var: val2 +dynval1: + vardyn: example +dynval2: + vardyn: example ``` diff --git a/tests/results/test_examples/60_9family_dynamic_calc_both.html b/tests/results/test_examples/60_9family_dynamic_calc_both.html index fc950638b..3ddee1a51 100644 --- a/tests/results/test_examples/60_9family_dynamic_calc_both.html +++ b/tests/results/test_examples/60_9family_dynamic_calc_both.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable

Example with all variables modifiable

+
dynval1:
+  vardyn: example
+dynval2:
+  vardyn: example

Example with all variables modifiable

-
var: val2                     # A suffix variable
-dynval1:                      # A dynamic family
-  vardyn: example             # A dynamic variable
-dynval2:                      # A dynamic family
-  vardyn: example             # A dynamic variable
\ No newline at end of file +
var: val2
+dynval1:
+  vardyn: example
+dynval2:
+  vardyn: example
\ No newline at end of file diff --git a/tests/results/test_examples/60_9family_dynamic_calc_both.sh b/tests/results/test_examples/60_9family_dynamic_calc_both.sh index f7e2faf35..b395013b3 100644 --- a/tests/results/test_examples/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_examples/60_9family_dynamic_calc_both.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  Example with all variables modifiable - ---  -var: val2 # A suffix variable  -dynval1: # A dynamic family  - vardyn: example # A dynamic variable  -dynval2: # A dynamic family  - vardyn: example # A dynamic variable  +var: val2  +dynval1:  + vardyn: example  +dynval2:  + vardyn: example  diff --git a/tests/results/test_examples/68_0family_leadership_mode.adoc b/tests/results/test_examples/68_0family_leadership_mode.adoc index b286adee2..ed25cb026 100644 --- a/tests/results/test_examples/68_0family_leadership_mode.adoc +++ b/tests/results/test_examples/68_0family_leadership_mode.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_examples/68_0family_leadership_mode.gitlab.md b/tests/results/test_examples/68_0family_leadership_mode.gitlab.md index bb52c5b8f..70d6b6149 100644 --- a/tests/results/test_examples/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test_examples/68_0family_leadership_mode.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -leader: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_examples/68_0family_leadership_mode.html b/tests/results/test_examples/68_0family_leadership_mode.html index 267d9b161..75a758cf1 100644 --- a/tests/results/test_examples/68_0family_leadership_mode.html +++ b/tests/results/test_examples/68_0family_leadership_mode.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
leader:                       # A leadership
-  - leader: example           # A leader
-    follower1: example        # A follower1
-    follower2: example        # A follower2
\ No newline at end of file +
leader:
+  - leader: example
+    follower1: example
+    follower2: example
\ No newline at end of file diff --git a/tests/results/test_examples/68_0family_leadership_mode.sh b/tests/results/test_examples/68_0family_leadership_mode.sh index af44d351d..240acd2af 100644 --- a/tests/results/test_examples/68_0family_leadership_mode.sh +++ b/tests/results/test_examples/68_0family_leadership_mode.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  +leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_examples_comment/00_0version_underscore.sh b/tests/results/test_examples_comment/00_0version_underscore.sh index 3324f1bb7..ebdb6ac7b 100644 --- a/tests/results/test_examples_comment/00_0version_underscore.sh +++ b/tests/results/test_examples_comment/00_0version_underscore.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  version: example # A variable  - - Example with all variables modifiable - ---  version: example # A variable  diff --git a/tests/results/test_examples_comment/00_1empty_variable.sh b/tests/results/test_examples_comment/00_1empty_variable.sh index 043486299..6347eaacb 100644 --- a/tests/results/test_examples_comment/00_1empty_variable.sh +++ b/tests/results/test_examples_comment/00_1empty_variable.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  empty: example  - - Example with all variables modifiable - ---  empty: example  diff --git a/tests/results/test_examples_comment/00_2default_calculated.sh b/tests/results/test_examples_comment/00_2default_calculated.sh index 315fb9dda..108f00208 100644 --- a/tests/results/test_examples_comment/00_2default_calculated.sh +++ b/tests/results/test_examples_comment/00_2default_calculated.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A first variable  var2: # A second variable  diff --git a/tests/results/test_examples_comment/00_2default_calculated_multi.sh b/tests/results/test_examples_comment/00_2default_calculated_multi.sh index ef8d1a732..72a18d88c 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_multi.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A first variable   - no  diff --git a/tests/results/test_examples_comment/00_2default_calculated_params_permissive.sh b/tests/results/test_examples_comment/00_2default_calculated_params_permissive.sh index 8178e759f..df0596dd5 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_params_permissive.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var2: a_value # A second variable  diff --git a/tests/results/test_examples_comment/00_2default_calculated_variable.sh b/tests/results/test_examples_comment/00_2default_calculated_variable.sh index abbc81b5f..b58ea1dc8 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_variable.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: # A first variable   - example.net  - - Example with all variables modifiable - ---  var1: # A first variable   - example.net  diff --git a/tests/results/test_examples_comment/00_2default_calculated_variable_description.sh b/tests/results/test_examples_comment/00_2default_calculated_variable_description.sh index 852c4d363..1c013a2fa 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_variable_description.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_variable_description.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var1: example # A first variable  - - Example with all variables modifiable - ---  var1: example # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_examples_comment/00_2default_calculated_variable_description_multi_line.sh index f692d5399..fc58ef056 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_variable_description_multi_line.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # A first variable  var3: example # A new variable  - - Example with all variables modifiable - ---  var1: example # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/00_2default_calculated_variable_transitive.sh b/tests/results/test_examples_comment/00_2default_calculated_variable_transitive.sh index abbc81b5f..b58ea1dc8 100644 --- a/tests/results/test_examples_comment/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_examples_comment/00_2default_calculated_variable_transitive.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: # A first variable   - example.net  - - Example with all variables modifiable - ---  var1: # A first variable   - example.net  diff --git a/tests/results/test_examples_comment/00_4load_subfolder.sh b/tests/results/test_examples_comment/00_4load_subfolder.sh index 35f21b1dc..91daa4d67 100644 --- a/tests/results/test_examples_comment/00_4load_subfolder.sh +++ b/tests/results/test_examples_comment/00_4load_subfolder.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # A variable  var2: example # A variable  - - Example with all variables modifiable - ---  var1: example # A variable  var2: example # A variable  diff --git a/tests/results/test_examples_comment/00_5load_notype.sh b/tests/results/test_examples_comment/00_5load_notype.sh index 19498dded..16824c6a1 100644 --- a/tests/results/test_examples_comment/00_5load_notype.sh +++ b/tests/results/test_examples_comment/00_5load_notype.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  without_type: non # A variable  diff --git a/tests/results/test_examples_comment/00_6boolean.sh b/tests/results/test_examples_comment/00_6boolean.sh index 5de0700b9..ce4aac38f 100644 --- a/tests/results/test_examples_comment/00_6boolean.sh +++ b/tests/results/test_examples_comment/00_6boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: true # The first variable  var2: true # The second variable  diff --git a/tests/results/test_examples_comment/00_6boolean_no_mandatory.sh b/tests/results/test_examples_comment/00_6boolean_no_mandatory.sh index 9917d57fd..61e41fe53 100644 --- a/tests/results/test_examples_comment/00_6boolean_no_mandatory.sh +++ b/tests/results/test_examples_comment/00_6boolean_no_mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: true # A variable  diff --git a/tests/results/test_examples_comment/00_6choice.sh b/tests/results/test_examples_comment/00_6choice.sh index dbac15134..79d59bde6 100644 --- a/tests/results/test_examples_comment/00_6choice.sh +++ b/tests/results/test_examples_comment/00_6choice.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: a_choice # The first variable  var2: a_choice # The second variable  - - Example with all variables modifiable - ---  var1: a_choice # The first variable  var2: a_choice # The second variable  diff --git a/tests/results/test_examples_comment/00_6choice_calculation.sh b/tests/results/test_examples_comment/00_6choice_calculation.sh index 2a1515117..793c0eb31 100644 --- a/tests/results/test_examples_comment/00_6choice_calculation.sh +++ b/tests/results/test_examples_comment/00_6choice_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: 9 # A variable  diff --git a/tests/results/test_examples_comment/00_6choice_link.sh b/tests/results/test_examples_comment/00_6choice_link.sh index bba26c445..ec2fd10a7 100644 --- a/tests/results/test_examples_comment/00_6choice_link.sh +++ b/tests/results/test_examples_comment/00_6choice_link.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var1: a_choice # The first variable  - - Example with all variables modifiable - ---  var1: a_choice # The first variable  var2: a_choice # The second variable  diff --git a/tests/results/test_examples_comment/00_6choice_variable.sh b/tests/results/test_examples_comment/00_6choice_variable.sh index 012bdb3bb..d0c882829 100644 --- a/tests/results/test_examples_comment/00_6choice_variable.sh +++ b/tests/results/test_examples_comment/00_6choice_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - a  diff --git a/tests/results/test_examples_comment/00_6choice_variable_link.sh b/tests/results/test_examples_comment/00_6choice_variable_link.sh index 9d9682b5f..d954bfb35 100644 --- a/tests/results/test_examples_comment/00_6choice_variable_link.sh +++ b/tests/results/test_examples_comment/00_6choice_variable_link.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - a  diff --git a/tests/results/test_examples_comment/00_6choice_variable_link2.sh b/tests/results/test_examples_comment/00_6choice_variable_link2.sh index d4e6c075b..c32fccb00 100644 --- a/tests/results/test_examples_comment/00_6choice_variable_link2.sh +++ b/tests/results/test_examples_comment/00_6choice_variable_link2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - a  diff --git a/tests/results/test_examples_comment/00_6custom.sh b/tests/results/test_examples_comment/00_6custom.sh index c8b68c97b..ffc1e5693 100644 --- a/tests/results/test_examples_comment/00_6custom.sh +++ b/tests/results/test_examples_comment/00_6custom.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  custom1: xxx # The first variable  - - Example with all variables modifiable - ---  custom1: xxx # The first variable  custom2: value # The seconf variable  diff --git a/tests/results/test_examples_comment/00_6domainname.sh b/tests/results/test_examples_comment/00_6domainname.sh index 78da443fe..769cb092f 100644 --- a/tests/results/test_examples_comment/00_6domainname.sh +++ b/tests/results/test_examples_comment/00_6domainname.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: my.domain.name # A domain name variable  diff --git a/tests/results/test_examples_comment/00_6domainname_params.sh b/tests/results/test_examples_comment/00_6domainname_params.sh index 78da443fe..769cb092f 100644 --- a/tests/results/test_examples_comment/00_6domainname_params.sh +++ b/tests/results/test_examples_comment/00_6domainname_params.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: my.domain.name # A domain name variable  diff --git a/tests/results/test_examples_comment/00_6float.sh b/tests/results/test_examples_comment/00_6float.sh index 16a19d57b..735fe0a93 100644 --- a/tests/results/test_examples_comment/00_6float.sh +++ b/tests/results/test_examples_comment/00_6float.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: 0.0 # The first variable  var2: 0.0 # The second variable  diff --git a/tests/results/test_examples_comment/00_6integer.sh b/tests/results/test_examples_comment/00_6integer.sh index 55041be9d..f3cf128f5 100644 --- a/tests/results/test_examples_comment/00_6integer.sh +++ b/tests/results/test_examples_comment/00_6integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: 0 # The first variable  var2: 0 # The second variable  diff --git a/tests/results/test_examples_comment/00_6ip.sh b/tests/results/test_examples_comment/00_6ip.sh index dbe69929d..039543b69 100644 --- a/tests/results/test_examples_comment/00_6ip.sh +++ b/tests/results/test_examples_comment/00_6ip.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: 1.1.1.1 # An IP  var2: 192.168.0.128/25 # An IP in CIDR format  diff --git a/tests/results/test_examples_comment/00_6network.sh b/tests/results/test_examples_comment/00_6network.sh index ea3f9cd8a..000b64e50 100644 --- a/tests/results/test_examples_comment/00_6network.sh +++ b/tests/results/test_examples_comment/00_6network.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: 1.1.1.0 # An network  var2: 1.1.1.0/24 # An network in CIDR format  diff --git a/tests/results/test_examples_comment/00_6number.sh b/tests/results/test_examples_comment/00_6number.sh index 55041be9d..f3cf128f5 100644 --- a/tests/results/test_examples_comment/00_6number.sh +++ b/tests/results/test_examples_comment/00_6number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: 0 # The first variable  var2: 0 # The second variable  diff --git a/tests/results/test_examples_comment/00_6port.sh b/tests/results/test_examples_comment/00_6port.sh index 6be1c3ac0..f2f57c7d6 100644 --- a/tests/results/test_examples_comment/00_6port.sh +++ b/tests/results/test_examples_comment/00_6port.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable1: '111' # A port variable  - - Example with all variables modifiable - ---  variable1: '111' # A port variable  variable2: '8080' # A port variable with default value  diff --git a/tests/results/test_examples_comment/00_6regexp.sh b/tests/results/test_examples_comment/00_6regexp.sh index 5a221b855..08cedce2d 100644 --- a/tests/results/test_examples_comment/00_6regexp.sh +++ b/tests/results/test_examples_comment/00_6regexp.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: '#b1b1b1' # A first variable  diff --git a/tests/results/test_examples_comment/00_6regexp_link.sh b/tests/results/test_examples_comment/00_6regexp_link.sh index 8bda194b9..113eb49a1 100644 --- a/tests/results/test_examples_comment/00_6regexp_link.sh +++ b/tests/results/test_examples_comment/00_6regexp_link.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: '#b1b1b1' # A first variable  var2: '#b2b1b1' # A second variable  diff --git a/tests/results/test_examples_comment/00_6secret.sh b/tests/results/test_examples_comment/00_6secret.sh index 53f396774..0a9462906 100644 --- a/tests/results/test_examples_comment/00_6secret.sh +++ b/tests/results/test_examples_comment/00_6secret.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  secret1: secrets # The first variable  - - Example with all variables modifiable - ---  secret1: secrets # The first variable  secret2: value # The second variable  diff --git a/tests/results/test_examples_comment/00_6secret_param.sh b/tests/results/test_examples_comment/00_6secret_param.sh index d59284056..e3ae89afd 100644 --- a/tests/results/test_examples_comment/00_6secret_param.sh +++ b/tests/results/test_examples_comment/00_6secret_param.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  secret1: secrets # The first variable  - - Example with all variables modifiable - ---  secret1: secrets # The first variable  secret2: value # The second variable  diff --git a/tests/results/test_examples_comment/00_6string.sh b/tests/results/test_examples_comment/00_6string.sh index ec7c9ffe2..48bc4c15a 100644 --- a/tests/results/test_examples_comment/00_6string.sh +++ b/tests/results/test_examples_comment/00_6string.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  var1: example # The first variable  var2: example # The second variable  var3: example # The third variable  - - Example with all variables modifiable - ---  var1: example # The first variable  var2: example # The second variable  diff --git a/tests/results/test_examples_comment/00_7choice_quote.sh b/tests/results/test_examples_comment/00_7choice_quote.sh index 857195a4d..963d5f34e 100644 --- a/tests/results/test_examples_comment/00_7choice_quote.sh +++ b/tests/results/test_examples_comment/00_7choice_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: quote' # A choice  diff --git a/tests/results/test_examples_comment/00_7help.sh b/tests/results/test_examples_comment/00_7help.sh index 120b8ee89..7ef126bbc 100644 --- a/tests/results/test_examples_comment/00_7help.sh +++ b/tests/results/test_examples_comment/00_7help.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # The first variable  var2: example # The second variable  - - Example with all variables modifiable - ---  var1: example # The first variable  var2: example # The second variable  diff --git a/tests/results/test_examples_comment/00_7help_quote.sh b/tests/results/test_examples_comment/00_7help_quote.sh index 120b8ee89..7ef126bbc 100644 --- a/tests/results/test_examples_comment/00_7help_quote.sh +++ b/tests/results/test_examples_comment/00_7help_quote.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # The first variable  var2: example # The second variable  - - Example with all variables modifiable - ---  var1: example # The first variable  var2: example # The second variable  diff --git a/tests/results/test_examples_comment/00_7help_sup.sh b/tests/results/test_examples_comment/00_7help_sup.sh index 0b690cdc3..167ade754 100644 --- a/tests/results/test_examples_comment/00_7help_sup.sh +++ b/tests/results/test_examples_comment/00_7help_sup.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # The first   var2: example # The second   - - Example with all variables modifiable - ---  var1: example # The first   var2: example # The second   diff --git a/tests/results/test_examples_comment/00_7value_doublequote.sh b/tests/results/test_examples_comment/00_7value_doublequote.sh index 72941a060..ab88c62e2 100644 --- a/tests/results/test_examples_comment/00_7value_doublequote.sh +++ b/tests/results/test_examples_comment/00_7value_doublequote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: quote" # A variable  diff --git a/tests/results/test_examples_comment/00_7value_doublequote2.sh b/tests/results/test_examples_comment/00_7value_doublequote2.sh index 6a5f5e47a..2050c909b 100644 --- a/tests/results/test_examples_comment/00_7value_doublequote2.sh +++ b/tests/results/test_examples_comment/00_7value_doublequote2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: quote'" # A variable  diff --git a/tests/results/test_examples_comment/00_7value_doublequote3.sh b/tests/results/test_examples_comment/00_7value_doublequote3.sh index 9c7df83c1..b8c628022 100644 --- a/tests/results/test_examples_comment/00_7value_doublequote3.sh +++ b/tests/results/test_examples_comment/00_7value_doublequote3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: quote\"\' # A variable  diff --git a/tests/results/test_examples_comment/00_7value_quote.sh b/tests/results/test_examples_comment/00_7value_quote.sh index 5dc7baa13..5fbd1131f 100644 --- a/tests/results/test_examples_comment/00_7value_quote.sh +++ b/tests/results/test_examples_comment/00_7value_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: quote' # A variable  diff --git a/tests/results/test_examples_comment/00_8calculation_information.sh b/tests/results/test_examples_comment/00_8calculation_information.sh index d9bdb2497..a6b407872 100644 --- a/tests/results/test_examples_comment/00_8calculation_information.sh +++ b/tests/results/test_examples_comment/00_8calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: example # A variable  diff --git a/tests/results/test_examples_comment/00_8test.sh b/tests/results/test_examples_comment/00_8test.sh index 2e7291c1c..eb3ce5ddb 100644 --- a/tests/results/test_examples_comment/00_8test.sh +++ b/tests/results/test_examples_comment/00_8test.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  var1: test # The first variable  var3: test1 # The third variable  @@ -10,11 +7,8 @@  - test1   - test2  - - Example with all variables modifiable - ---  var1: test # The first variable  var2: test # The second variable  diff --git a/tests/results/test_examples_comment/00_9choice_variable_multi.sh b/tests/results/test_examples_comment/00_9choice_variable_multi.sh index a49fd66fe..1398551d4 100644 --- a/tests/results/test_examples_comment/00_9choice_variable_multi.sh +++ b/tests/results/test_examples_comment/00_9choice_variable_multi.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  variable1: # A first variable   - a_choice  - - Example with all variables modifiable - ---  variable1: # A first variable   - a_choice  diff --git a/tests/results/test_examples_comment/00_9choice_variables.sh b/tests/results/test_examples_comment/00_9choice_variables.sh index 3e9a23f48..17d989ca3 100644 --- a/tests/results/test_examples_comment/00_9choice_variables.sh +++ b/tests/results/test_examples_comment/00_9choice_variables.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  source_variable_1: val1 # The first source variable  source_variable_2: val2 # The second source variable  diff --git a/tests/results/test_examples_comment/00_9default_calculation.sh b/tests/results/test_examples_comment/00_9default_calculation.sh index 331a7730d..9ad1033ca 100644 --- a/tests/results/test_examples_comment/00_9default_calculation.sh +++ b/tests/results/test_examples_comment/00_9default_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: string_1_True_None # A variable  diff --git a/tests/results/test_examples_comment/00_9default_calculation_information.sh b/tests/results/test_examples_comment/00_9default_calculation_information.sh index 99be660dd..ea51651ac 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_information.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: example # A variable  diff --git a/tests/results/test_examples_comment/00_9default_calculation_information_other_variable.sh b/tests/results/test_examples_comment/00_9default_calculation_information_other_variable.sh index 852c4d363..1c013a2fa 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_information_other_variable.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var1: example # A first variable  - - Example with all variables modifiable - ---  var1: example # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/00_9default_calculation_multi_optional.sh b/tests/results/test_examples_comment/00_9default_calculation_multi_optional.sh index 694309674..509206f4f 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_multi_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples_comment/00_9default_calculation_multi_optional2.sh b/tests/results/test_examples_comment/00_9default_calculation_multi_optional2.sh index 694309674..509206f4f 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_multi_optional2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples_comment/00_9default_calculation_multi_optional_default.sh b/tests/results/test_examples_comment/00_9default_calculation_multi_optional_default.sh index 701eb608e..f777e864b 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_multi_optional_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable: val1  my_calculated_variable:  diff --git a/tests/results/test_examples_comment/00_9default_calculation_optional.sh b/tests/results/test_examples_comment/00_9default_calculation_optional.sh index 2626c4c58..5ec00089a 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_optional.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_optional.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  my_calculated_variable:   - example  - - Example with all variables modifiable - ---  my_calculated_variable:   - example  diff --git a/tests/results/test_examples_comment/00_9default_calculation_optional_exists.sh b/tests/results/test_examples_comment/00_9default_calculation_optional_exists.sh index 7f901f2f8..31a94d960 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_optional_exists.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_variable:   - val1  diff --git a/tests/results/test_examples_comment/00_9default_calculation_param_optional.sh b/tests/results/test_examples_comment/00_9default_calculation_param_optional.sh index bb113a148..8ea76b3d6 100644 --- a/tests/results/test_examples_comment/00_9default_calculation_param_optional.sh +++ b/tests/results/test_examples_comment/00_9default_calculation_param_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A first variable  var2: no # A second variable  diff --git a/tests/results/test_examples_comment/00_9default_information_other_variable.sh b/tests/results/test_examples_comment/00_9default_information_other_variable.sh index 852c4d363..1c013a2fa 100644 --- a/tests/results/test_examples_comment/00_9default_information_other_variable.sh +++ b/tests/results/test_examples_comment/00_9default_information_other_variable.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var1: example # A first variable  - - Example with all variables modifiable - ---  var1: example # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/00_9default_information_other_variable2.sh b/tests/results/test_examples_comment/00_9default_information_other_variable2.sh index 852c4d363..1c013a2fa 100644 --- a/tests/results/test_examples_comment/00_9default_information_other_variable2.sh +++ b/tests/results/test_examples_comment/00_9default_information_other_variable2.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var1: example # A first variable  - - Example with all variables modifiable - ---  var1: example # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/00_9default_integer.sh b/tests/results/test_examples_comment/00_9default_integer.sh index 2a1515117..793c0eb31 100644 --- a/tests/results/test_examples_comment/00_9default_integer.sh +++ b/tests/results/test_examples_comment/00_9default_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: 9 # A variable  diff --git a/tests/results/test_examples_comment/00_9default_number.sh b/tests/results/test_examples_comment/00_9default_number.sh index 2a1515117..793c0eb31 100644 --- a/tests/results/test_examples_comment/00_9default_number.sh +++ b/tests/results/test_examples_comment/00_9default_number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: 9 # A variable  diff --git a/tests/results/test_examples_comment/01_6boolean_multi.sh b/tests/results/test_examples_comment/01_6boolean_multi.sh index 01fccda19..78f789525 100644 --- a/tests/results/test_examples_comment/01_6boolean_multi.sh +++ b/tests/results/test_examples_comment/01_6boolean_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # The first variable   - true  diff --git a/tests/results/test_examples_comment/01_6custom_multi.sh b/tests/results/test_examples_comment/01_6custom_multi.sh index e8dc25d22..f61583270 100644 --- a/tests/results/test_examples_comment/01_6custom_multi.sh +++ b/tests/results/test_examples_comment/01_6custom_multi.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  custom1: # A first custom variable   - xxx  - - Example with all variables modifiable - ---  custom1: # A first custom variable   - xxx  diff --git a/tests/results/test_examples_comment/01_6float_multi.sh b/tests/results/test_examples_comment/01_6float_multi.sh index 6412a7e60..1262bad9a 100644 --- a/tests/results/test_examples_comment/01_6float_multi.sh +++ b/tests/results/test_examples_comment/01_6float_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # The first variable   - 0.0  diff --git a/tests/results/test_examples_comment/01_6integer_multi.sh b/tests/results/test_examples_comment/01_6integer_multi.sh index 234deb5dd..ea383289b 100644 --- a/tests/results/test_examples_comment/01_6integer_multi.sh +++ b/tests/results/test_examples_comment/01_6integer_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # The first variable   - 0  diff --git a/tests/results/test_examples_comment/01_6integer_multi_mandatory.sh b/tests/results/test_examples_comment/01_6integer_multi_mandatory.sh index edd4392dd..d118be4a4 100644 --- a/tests/results/test_examples_comment/01_6integer_multi_mandatory.sh +++ b/tests/results/test_examples_comment/01_6integer_multi_mandatory.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var: # The first variable   - 42  - - Example with all variables modifiable - ---  var: # The first variable   - 42  diff --git a/tests/results/test_examples_comment/01_6string_empty.sh b/tests/results/test_examples_comment/01_6string_empty.sh index afb825948..53b4a9627 100644 --- a/tests/results/test_examples_comment/01_6string_empty.sh +++ b/tests/results/test_examples_comment/01_6string_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # The second variable   - value  diff --git a/tests/results/test_examples_comment/01_6string_multi.sh b/tests/results/test_examples_comment/01_6string_multi.sh index a95d50821..998b83b50 100644 --- a/tests/results/test_examples_comment/01_6string_multi.sh +++ b/tests/results/test_examples_comment/01_6string_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  var1: # The first variable   - example  @@ -11,11 +8,8 @@ var3: # The third variable   - example  - - Example with all variables modifiable - ---  var1: # The first variable   - example  diff --git a/tests/results/test_examples_comment/01_6string_multi_length.sh b/tests/results/test_examples_comment/01_6string_multi_length.sh index d24e38f5a..8761de753 100644 --- a/tests/results/test_examples_comment/01_6string_multi_length.sh +++ b/tests/results/test_examples_comment/01_6string_multi_length.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # The variable   - val1  diff --git a/tests/results/test_examples_comment/01_7value_multi_doublequote.sh b/tests/results/test_examples_comment/01_7value_multi_doublequote.sh index 8d27ee4e7..bd147b015 100644 --- a/tests/results/test_examples_comment/01_7value_multi_doublequote.sh +++ b/tests/results/test_examples_comment/01_7value_multi_doublequote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - quote"  diff --git a/tests/results/test_examples_comment/01_7value_multi_doublequote2.sh b/tests/results/test_examples_comment/01_7value_multi_doublequote2.sh index a78ae1aaa..f1f19f25e 100644 --- a/tests/results/test_examples_comment/01_7value_multi_doublequote2.sh +++ b/tests/results/test_examples_comment/01_7value_multi_doublequote2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - quote'"  diff --git a/tests/results/test_examples_comment/01_7value_multi_quote.sh b/tests/results/test_examples_comment/01_7value_multi_quote.sh index d548b3d8a..8b30db41f 100644 --- a/tests/results/test_examples_comment/01_7value_multi_quote.sh +++ b/tests/results/test_examples_comment/01_7value_multi_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - quote'  diff --git a/tests/results/test_examples_comment/01_8calculation_information_multi.sh b/tests/results/test_examples_comment/01_8calculation_information_multi.sh index 22161147b..4bc62444b 100644 --- a/tests/results/test_examples_comment/01_8calculation_information_multi.sh +++ b/tests/results/test_examples_comment/01_8calculation_information_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - example  diff --git a/tests/results/test_examples_comment/01_9choice_variable_multi.sh b/tests/results/test_examples_comment/01_9choice_variable_multi.sh index 26fcc3031..e5824b348 100644 --- a/tests/results/test_examples_comment/01_9choice_variable_multi.sh +++ b/tests/results/test_examples_comment/01_9choice_variable_multi.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable2: a_choice # A second variable  - - Example with all variables modifiable - ---  variable1: # A first variable   - a  diff --git a/tests/results/test_examples_comment/01_9choice_variable_optional.sh b/tests/results/test_examples_comment/01_9choice_variable_optional.sh index 9592207b4..bf71104ca 100644 --- a/tests/results/test_examples_comment/01_9choice_variable_optional.sh +++ b/tests/results/test_examples_comment/01_9choice_variable_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: c # A variable  diff --git a/tests/results/test_examples_comment/02_0tags.sh b/tests/results/test_examples_comment/02_0tags.sh index 120b8ee89..7ef126bbc 100644 --- a/tests/results/test_examples_comment/02_0tags.sh +++ b/tests/results/test_examples_comment/02_0tags.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var1: example # The first variable  var2: example # The second variable  - - Example with all variables modifiable - ---  var1: example # The first variable  var2: example # The second variable  diff --git a/tests/results/test_examples_comment/04_0type_param.sh b/tests/results/test_examples_comment/04_0type_param.sh index ef9e71119..8a5a92358 100644 --- a/tests/results/test_examples_comment/04_0type_param.sh +++ b/tests/results/test_examples_comment/04_0type_param.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  int: 10 # A limited number  diff --git a/tests/results/test_examples_comment/04_0type_param_integer.sh b/tests/results/test_examples_comment/04_0type_param_integer.sh index 96fb550b6..8ac294a97 100644 --- a/tests/results/test_examples_comment/04_0type_param_integer.sh +++ b/tests/results/test_examples_comment/04_0type_param_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  int: 10 # A limited integer  diff --git a/tests/results/test_examples_comment/04_1auto_save.sh b/tests/results/test_examples_comment/04_1auto_save.sh index 18d7c6d47..c5f0aaa5b 100644 --- a/tests/results/test_examples_comment/04_1auto_save.sh +++ b/tests/results/test_examples_comment/04_1auto_save.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: no # An auto save variable  diff --git a/tests/results/test_examples_comment/04_1auto_save_and_calculated.sh b/tests/results/test_examples_comment/04_1auto_save_and_calculated.sh index bb113a148..8ea76b3d6 100644 --- a/tests/results/test_examples_comment/04_1auto_save_and_calculated.sh +++ b/tests/results/test_examples_comment/04_1auto_save_and_calculated.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A first variable  var2: no # A second variable  diff --git a/tests/results/test_examples_comment/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_examples_comment/04_1auto_save_and_calculated_hidden.sh index c1a41f406..352680b3d 100644 --- a/tests/results/test_examples_comment/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_examples_comment/04_1auto_save_and_calculated_hidden.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A first variable  var2: yes # A second variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden.sh index cdf08a5f8..a6e3c938e 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var2: example # A second variable  - - Example with all variables modifiable - ---  var1: value # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden_2.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden_2.sh index 1d7cfff10..8242255a1 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden_2.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var2: example # A second variable  - - Example with all variables modifiable - ---  var1: value # A first variable  var2: example # A second variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden_3.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden_3.sh index 0b2a532b8..c1b5e0126 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden_3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var3: value # A third variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden_4.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden_4.sh index dfacb7f93..bb15b2a84 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden_4.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var2: example # A second variable  - - Example with all variables modifiable - ---  var2: example # A second variable  var3: value # A third variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden_5.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden_5.sh index de0098a3a..a7ad663e0 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden_5.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var3: example # A third variable  - - Example with all variables modifiable - ---  var1: value # A first variable  var3: example # A third variable  diff --git a/tests/results/test_examples_comment/04_1default_calculation_hidden_6.sh b/tests/results/test_examples_comment/04_1default_calculation_hidden_6.sh index de0098a3a..a7ad663e0 100644 --- a/tests/results/test_examples_comment/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_examples_comment/04_1default_calculation_hidden_6.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var3: example # A third variable  - - Example with all variables modifiable - ---  var1: value # A first variable  var3: example # A third variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_boolean.sh b/tests/results/test_examples_comment/04_5disabled_calculation_boolean.sh index 3690caa5a..4c6a234b2 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_boolean.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  variable1: example # A first variable  variable2: example # A seconde variable  - - Example with all variables modifiable - ---  condition: no # A conditional variable  variable1: example # A first variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_optional.sh b/tests/results/test_examples_comment/04_5disabled_calculation_optional.sh index 574fb3c92..a510fca68 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_optional.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: no # A condition  var1: example # A first variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_optional_default.sh b/tests/results/test_examples_comment/04_5disabled_calculation_optional_default.sh index debe5e807..8f19768a2 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_optional_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: false # A condition  var1: example # A first variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable.sh index 158f495c8..60ede5f57 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: false # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable10.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable10.sh index 8fdf6a542..22aa9bcb2 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable10.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: true # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable2.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable2.sh index 8fdf6a542..22aa9bcb2 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable2.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: true # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable3.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable3.sh index 65f75b32a..9ff0608f5 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable3.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: yes # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable4.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable4.sh index 65f75b32a..9ff0608f5 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable4.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: yes # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable5.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable5.sh index bb8d93db8..d775e5b11 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable5.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable6.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable6.sh index bb8d93db8..d775e5b11 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable6.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable7.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable7.sh index 158f495c8..60ede5f57 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable7.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: false # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable9.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable9.sh index bb8d93db8..d775e5b11 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable9.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  variable: example # A variable  diff --git a/tests/results/test_examples_comment/04_5disabled_calculation_variable_multi.sh b/tests/results/test_examples_comment/04_5disabled_calculation_variable_multi.sh index 5d067256d..00e5c42e0 100644 --- a/tests/results/test_examples_comment/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_examples_comment/04_5disabled_calculation_variable_multi.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  variable: # A variable   - example  - - Example with all variables modifiable - ---  condition: false # A condition  variable: # A variable  diff --git a/tests/results/test_examples_comment/04_5validators.sh b/tests/results/test_examples_comment/04_5validators.sh index 987406e67..78dd28eaf 100644 --- a/tests/results/test_examples_comment/04_5validators.sh +++ b/tests/results/test_examples_comment/04_5validators.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  int: 42 # An integer  - - Example with all variables modifiable - ---  int: 42 # An integer  diff --git a/tests/results/test_examples_comment/04_5validators_differ.sh b/tests/results/test_examples_comment/04_5validators_differ.sh index 28a656c4a..0c590d4af 100644 --- a/tests/results/test_examples_comment/04_5validators_differ.sh +++ b/tests/results/test_examples_comment/04_5validators_differ.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: another_value # A first variable  var2: no # A second variable  diff --git a/tests/results/test_examples_comment/04_5validators_multi.sh b/tests/results/test_examples_comment/04_5validators_multi.sh index 2b0ada4e3..b0a46befb 100644 --- a/tests/results/test_examples_comment/04_5validators_multi.sh +++ b/tests/results/test_examples_comment/04_5validators_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - no  diff --git a/tests/results/test_examples_comment/04_5validators_multi2.sh b/tests/results/test_examples_comment/04_5validators_multi2.sh index c68349d21..ba7b5facb 100644 --- a/tests/results/test_examples_comment/04_5validators_multi2.sh +++ b/tests/results/test_examples_comment/04_5validators_multi2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - val1  diff --git a/tests/results/test_examples_comment/04_5validators_multi3.sh b/tests/results/test_examples_comment/04_5validators_multi3.sh index d5528c7ae..cac41b79c 100644 --- a/tests/results/test_examples_comment/04_5validators_multi3.sh +++ b/tests/results/test_examples_comment/04_5validators_multi3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A second variable   - 0  diff --git a/tests/results/test_examples_comment/04_5validators_warnings.sh b/tests/results/test_examples_comment/04_5validators_warnings.sh index 155d1c25f..1abec1d54 100644 --- a/tests/results/test_examples_comment/04_5validators_warnings.sh +++ b/tests/results/test_examples_comment/04_5validators_warnings.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  int: 1000 # An integer  diff --git a/tests/results/test_examples_comment/04_5validators_warnings_all.sh b/tests/results/test_examples_comment/04_5validators_warnings_all.sh index 155d1c25f..1abec1d54 100644 --- a/tests/results/test_examples_comment/04_5validators_warnings_all.sh +++ b/tests/results/test_examples_comment/04_5validators_warnings_all.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  int: 1000 # An integer  diff --git a/tests/results/test_examples_comment/05_0multi_not_uniq.sh b/tests/results/test_examples_comment/05_0multi_not_uniq.sh index bb70f5360..1655615bd 100644 --- a/tests/results/test_examples_comment/05_0multi_not_uniq.sh +++ b/tests/results/test_examples_comment/05_0multi_not_uniq.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A variable   - non  diff --git a/tests/results/test_examples_comment/05_0multi_uniq.sh b/tests/results/test_examples_comment/05_0multi_uniq.sh index df0c92375..de4cf0bf1 100644 --- a/tests/results/test_examples_comment/05_0multi_uniq.sh +++ b/tests/results/test_examples_comment/05_0multi_uniq.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - non  diff --git a/tests/results/test_examples_comment/12_1auto_save_expert.sh b/tests/results/test_examples_comment/12_1auto_save_expert.sh index d141dffef..49b84a3de 100644 --- a/tests/results/test_examples_comment/12_1auto_save_expert.sh +++ b/tests/results/test_examples_comment/12_1auto_save_expert.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: no # A variable  diff --git a/tests/results/test_examples_comment/16_0redefine_description.sh b/tests/results/test_examples_comment/16_0redefine_description.sh index e4cffcc99..52325db15 100644 --- a/tests/results/test_examples_comment/16_0redefine_description.sh +++ b/tests/results/test_examples_comment/16_0redefine_description.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var: example # Redefined  - - Example with all variables modifiable - ---  var: example # Redefined  diff --git a/tests/results/test_examples_comment/16_2family_redefine_calculation.sh b/tests/results/test_examples_comment/16_2family_redefine_calculation.sh index 430d55425..09c785550 100644 --- a/tests/results/test_examples_comment/16_2family_redefine_calculation.sh +++ b/tests/results/test_examples_comment/16_2family_redefine_calculation.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  family: # family   var1: example  - - Example with all variables modifiable - ---  family: # family   var1: example  diff --git a/tests/results/test_examples_comment/16_3family_empty_at_ends.sh b/tests/results/test_examples_comment/16_3family_empty_at_ends.sh index 430d55425..09c785550 100644 --- a/tests/results/test_examples_comment/16_3family_empty_at_ends.sh +++ b/tests/results/test_examples_comment/16_3family_empty_at_ends.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  family: # family   var1: example  - - Example with all variables modifiable - ---  family: # family   var1: example  diff --git a/tests/results/test_examples_comment/16_5exists_nonexists.sh b/tests/results/test_examples_comment/16_5exists_nonexists.sh index b7bba5e17..c97b72c10 100644 --- a/tests/results/test_examples_comment/16_5exists_nonexists.sh +++ b/tests/results/test_examples_comment/16_5exists_nonexists.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A variable  var2: yes # A new variable  diff --git a/tests/results/test_examples_comment/16_5redefine_calculation.sh b/tests/results/test_examples_comment/16_5redefine_calculation.sh index 7452063fc..7ccbc3c3b 100644 --- a/tests/results/test_examples_comment/16_5redefine_calculation.sh +++ b/tests/results/test_examples_comment/16_5redefine_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: yes # A variable  diff --git a/tests/results/test_examples_comment/16_5redefine_choice.sh b/tests/results/test_examples_comment/16_5redefine_choice.sh index 4f8c90dc6..b3474372c 100644 --- a/tests/results/test_examples_comment/16_5redefine_choice.sh +++ b/tests/results/test_examples_comment/16_5redefine_choice.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: a_choice # A variable  - - Example with all variables modifiable - ---  variable: a_choice # A variable  diff --git a/tests/results/test_examples_comment/16_5redefine_default.sh b/tests/results/test_examples_comment/16_5redefine_default.sh index 7452063fc..7ccbc3c3b 100644 --- a/tests/results/test_examples_comment/16_5redefine_default.sh +++ b/tests/results/test_examples_comment/16_5redefine_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: yes # A variable  diff --git a/tests/results/test_examples_comment/16_5redefine_default_calculation.sh b/tests/results/test_examples_comment/16_5redefine_default_calculation.sh index bb8d93db8..d775e5b11 100644 --- a/tests/results/test_examples_comment/16_5redefine_default_calculation.sh +++ b/tests/results/test_examples_comment/16_5redefine_default_calculation.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  variable: example # A variable  diff --git a/tests/results/test_examples_comment/16_5redefine_family.sh b/tests/results/test_examples_comment/16_5redefine_family.sh index 6db64800d..3d21ee61b 100644 --- a/tests/results/test_examples_comment/16_5redefine_family.sh +++ b/tests/results/test_examples_comment/16_5redefine_family.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  family: # New description   variable: example # A variable  - - Example with all variables modifiable - ---  family: # New description   variable: example # A variable  diff --git a/tests/results/test_examples_comment/16_5redefine_help.sh b/tests/results/test_examples_comment/16_5redefine_help.sh index 13874de20..c1fd511df 100644 --- a/tests/results/test_examples_comment/16_5redefine_help.sh +++ b/tests/results/test_examples_comment/16_5redefine_help.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  family: # A family   variable: example # Redefine help  - - Example with all variables modifiable - ---  family: # A family   variable: example # Redefine help  diff --git a/tests/results/test_examples_comment/16_5redefine_multi.sh b/tests/results/test_examples_comment/16_5redefine_multi.sh index df0c92375..de4cf0bf1 100644 --- a/tests/results/test_examples_comment/16_5redefine_multi.sh +++ b/tests/results/test_examples_comment/16_5redefine_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  variable: # A variable   - non  diff --git a/tests/results/test_examples_comment/16_5redefine_remove_disable_calculation.sh b/tests/results/test_examples_comment/16_5redefine_remove_disable_calculation.sh index c7326ae63..d85dcd942 100644 --- a/tests/results/test_examples_comment/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_examples_comment/16_5redefine_remove_disable_calculation.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  - - Example with all variables modifiable - ---  condition: no # A condition  variable: example # A variable  diff --git a/tests/results/test_examples_comment/16_5test_redefine.sh b/tests/results/test_examples_comment/16_5test_redefine.sh index e86fa34df..b095c13d9 100644 --- a/tests/results/test_examples_comment/16_5test_redefine.sh +++ b/tests/results/test_examples_comment/16_5test_redefine.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var3: example # A third variable  - - Example with all variables modifiable - ---  var1: test1 # A first variable  var2: test1 # A second variable  diff --git a/tests/results/test_examples_comment/16_6choice_redefine.sh b/tests/results/test_examples_comment/16_6choice_redefine.sh index b02e1b0fe..a7e9ea56f 100644 --- a/tests/results/test_examples_comment/16_6choice_redefine.sh +++ b/tests/results/test_examples_comment/16_6choice_redefine.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: c # A choice  diff --git a/tests/results/test_examples_comment/16_6exists_redefine_family.sh b/tests/results/test_examples_comment/16_6exists_redefine_family.sh index 9e26d9329..a4eb6d56b 100644 --- a/tests/results/test_examples_comment/16_6exists_redefine_family.sh +++ b/tests/results/test_examples_comment/16_6exists_redefine_family.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  family1: # New description   variable1: example # A variable  family2: # A second family   variable2: example # A second variable  - - Example with all variables modifiable - ---  family1: # New description   variable1: example # A variable  diff --git a/tests/results/test_examples_comment/16exists_exists.sh b/tests/results/test_examples_comment/16exists_exists.sh index fe55b36e6..61fca1d7d 100644 --- a/tests/results/test_examples_comment/16exists_exists.sh +++ b/tests/results/test_examples_comment/16exists_exists.sh @@ -1,16 +1,10 @@ - - Example with mandatory variables not filled in - ---  var: example # Description  - - Example with all variables modifiable - ---  var: example # Description  diff --git a/tests/results/test_examples_comment/20_0family_append.sh b/tests/results/test_examples_comment/20_0family_append.sh index 104c7899c..35c9d99e6 100644 --- a/tests/results/test_examples_comment/20_0family_append.sh +++ b/tests/results/test_examples_comment/20_0family_append.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  family: # A family   var1: example # The first variable   var2: example # The second variable  - - Example with all variables modifiable - ---  family: # A family   var1: example # The first variable  diff --git a/tests/results/test_examples_comment/20_0multi_family.sh b/tests/results/test_examples_comment/20_0multi_family.sh index 79c1fba0f..d7ad79364 100644 --- a/tests/results/test_examples_comment/20_0multi_family.sh +++ b/tests/results/test_examples_comment/20_0multi_family.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  family: # A family   subfamily: # A sub family  diff --git a/tests/results/test_examples_comment/20_0multi_family_basic.sh b/tests/results/test_examples_comment/20_0multi_family_basic.sh index 8c0934f5e..03f6f61c8 100644 --- a/tests/results/test_examples_comment/20_0multi_family_basic.sh +++ b/tests/results/test_examples_comment/20_0multi_family_basic.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  family: # A family   subfamily: # A sub family   variable: example # A variable  - - Example with all variables modifiable - ---  family: # A family   subfamily: # A sub family  diff --git a/tests/results/test_examples_comment/20_0multi_family_expert.sh b/tests/results/test_examples_comment/20_0multi_family_expert.sh index 79c1fba0f..d7ad79364 100644 --- a/tests/results/test_examples_comment/20_0multi_family_expert.sh +++ b/tests/results/test_examples_comment/20_0multi_family_expert.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  family: # A family   subfamily: # A sub family  diff --git a/tests/results/test_examples_comment/20_0multi_family_order.sh b/tests/results/test_examples_comment/20_0multi_family_order.sh index 380359ee8..b579d56ea 100644 --- a/tests/results/test_examples_comment/20_0multi_family_order.sh +++ b/tests/results/test_examples_comment/20_0multi_family_order.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  variable: example # A variable  family: # A family  @@ -11,11 +8,8 @@  variable: example # A variable   variable2: example # A second variable  - - Example with all variables modifiable - ---  variable: example # A variable  family: # A family  diff --git a/tests/results/test_examples_comment/20_0validators_differ_redefine.sh b/tests/results/test_examples_comment/20_0validators_differ_redefine.sh index 4e5cf3cfe..f550b4502 100644 --- a/tests/results/test_examples_comment/20_0validators_differ_redefine.sh +++ b/tests/results/test_examples_comment/20_0validators_differ_redefine.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: no # A first variable  var2: no # A second variable  diff --git a/tests/results/test_examples_comment/20_2family_looks_like_dynamic.sh b/tests/results/test_examples_comment/20_2family_looks_like_dynamic.sh index d0f35d930..5b7c3a8c4 100644 --- a/tests/results/test_examples_comment/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_examples_comment/20_2family_looks_like_dynamic.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_family: # my_family   dynamic:  diff --git a/tests/results/test_examples_comment/20_2family_looks_like_variable.sh b/tests/results/test_examples_comment/20_2family_looks_like_variable.sh index a9f9cab5a..6e867d5ca 100644 --- a/tests/results/test_examples_comment/20_2family_looks_like_variable.sh +++ b/tests/results/test_examples_comment/20_2family_looks_like_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  my_family: # my_family   default: true  diff --git a/tests/results/test_examples_comment/20_9default_information_parent.sh b/tests/results/test_examples_comment/20_9default_information_parent.sh index 3458b98d6..4e1feb6f6 100644 --- a/tests/results/test_examples_comment/20_9default_information_parent.sh +++ b/tests/results/test_examples_comment/20_9default_information_parent.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  family: # family   var1: example # A first variable  - - Example with all variables modifiable - ---  family: # family   var1: example # A first variable  diff --git a/tests/results/test_examples_comment/20_9family_absolute.sh b/tests/results/test_examples_comment/20_9family_absolute.sh index 90c177d94..b2796148c 100644 --- a/tests/results/test_examples_comment/20_9family_absolute.sh +++ b/tests/results/test_examples_comment/20_9family_absolute.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  var1: example # First variable  family: # A family   var2: string6 # A second variable  - - Example with all variables modifiable - ---  var1: example # First variable  family: # A family  diff --git a/tests/results/test_examples_comment/24_0family_hidden_condition_sub_family.sh b/tests/results/test_examples_comment/24_0family_hidden_condition_sub_family.sh index eec05ad4a..86bbf6511 100644 --- a/tests/results/test_examples_comment/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_examples_comment/24_0family_hidden_condition_sub_family.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  family: # Possibly hidden family   subfamily: # subfamily   var1: example # A variable  - - Example with all variables modifiable - ---  condition: no # The variable use has condition  family: # Possibly hidden family  diff --git a/tests/results/test_examples_comment/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_examples_comment/24_0family_hidden_condition_variable_sub_family.sh index e7a2d234f..2e7104a34 100644 --- a/tests/results/test_examples_comment/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_examples_comment/24_0family_hidden_condition_variable_sub_family.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: true # The variable use has condition  family: # Possibly hidden family  diff --git a/tests/results/test_examples_comment/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_examples_comment/24_0family_hidden_param_condition_sub_family.sh index 2d579650b..cfe04ade4 100644 --- a/tests/results/test_examples_comment/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_examples_comment/24_0family_hidden_param_condition_sub_family.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  family: # Possibly hidden family   sub_family: # A subfamily   var1: example # A variable  - - Example with all variables modifiable - ---  condition: no # The variable use has condition  family: # Possibly hidden family  diff --git a/tests/results/test_examples_comment/24_0family_mandatory_condition.sh b/tests/results/test_examples_comment/24_0family_mandatory_condition.sh index f1a0364e3..870c81416 100644 --- a/tests/results/test_examples_comment/24_0family_mandatory_condition.sh +++ b/tests/results/test_examples_comment/24_0family_mandatory_condition.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: no # A condition  var: example # A variable  diff --git a/tests/results/test_examples_comment/24_0family_mandatory_condition_variable.sh b/tests/results/test_examples_comment/24_0family_mandatory_condition_variable.sh index 9a3697f13..23d9967fe 100644 --- a/tests/results/test_examples_comment/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_examples_comment/24_0family_mandatory_condition_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: true # A condition  var: example # A variable  diff --git a/tests/results/test_examples_comment/24_7validators_variable_optional.sh b/tests/results/test_examples_comment/24_7validators_variable_optional.sh index 94fefacf0..6d49ee1c7 100644 --- a/tests/results/test_examples_comment/24_7validators_variable_optional.sh +++ b/tests/results/test_examples_comment/24_7validators_variable_optional.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  general: # A family   int: 5 # A first integer  - - Example with all variables modifiable - ---  general: # A family   int: 5 # A first integer  diff --git a/tests/results/test_examples_comment/40_0leadership.sh b/tests/results/test_examples_comment/40_0leadership.sh index 1c777e532..ae47dfe97 100644 --- a/tests/results/test_examples_comment/40_0leadership.sh +++ b/tests/results/test_examples_comment/40_0leadership.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  leader: # A leadership   - leader: example # A leader   follower1: example # A follower   follower2: example # An other follower  - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/40_0leadership_diff_name.sh b/tests/results/test_examples_comment/40_0leadership_diff_name.sh index 7efdc54cc..9944f7315 100644 --- a/tests/results/test_examples_comment/40_0leadership_diff_name.sh +++ b/tests/results/test_examples_comment/40_0leadership_diff_name.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  leadership: # A leadership   - leader: example # A leader   follower1: example # A follower   follower2: example # An other follower  - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/40_0leadership_follower_default_calculation.sh b/tests/results/test_examples_comment/40_0leadership_follower_default_calculation.sh index a639ce57e..b98b03588 100644 --- a/tests/results/test_examples_comment/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_examples_comment/40_0leadership_follower_default_calculation.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  leader: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/40_0leadership_follower_default_value.sh b/tests/results/test_examples_comment/40_0leadership_follower_default_value.sh index 7d5f1ed73..94b28d59a 100644 --- a/tests/results/test_examples_comment/40_0leadership_follower_default_value.sh +++ b/tests/results/test_examples_comment/40_0leadership_follower_default_value.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/40_0leadership_leader_follower.sh b/tests/results/test_examples_comment/40_0leadership_leader_follower.sh index 72d395ef0..561d532fe 100644 --- a/tests/results/test_examples_comment/40_0leadership_leader_follower.sh +++ b/tests/results/test_examples_comment/40_0leadership_leader_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_0leadership_leader_not_multi.sh b/tests/results/test_examples_comment/40_0leadership_leader_not_multi.sh index 9e0b2da68..b12b2b11c 100644 --- a/tests/results/test_examples_comment/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_examples_comment/40_0leadership_leader_not_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  general1: # general1   leader: # Leader  @@ -10,11 +7,8 @@  follower1: example # Follower1   follower2: example # Follower2  - - Example with all variables modifiable - ---  general: # general   mode_conteneur_actif: non # No change  diff --git a/tests/results/test_examples_comment/40_0leadership_reduce.sh b/tests/results/test_examples_comment/40_0leadership_reduce.sh index 6bf4b7f3e..faf3eb4df 100644 --- a/tests/results/test_examples_comment/40_0leadership_reduce.sh +++ b/tests/results/test_examples_comment/40_0leadership_reduce.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: val1 # A leader  diff --git a/tests/results/test_examples_comment/40_1leadership_append_follower.sh b/tests/results/test_examples_comment/40_1leadership_append_follower.sh index 8144aa26b..bdd139cad 100644 --- a/tests/results/test_examples_comment/40_1leadership_append_follower.sh +++ b/tests/results/test_examples_comment/40_1leadership_append_follower.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  leader: # A leadership   - leader: example # The leader  @@ -10,11 +7,8 @@  follower2: example # The follower2   follower3: example # The follower3  - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # The leader  diff --git a/tests/results/test_examples_comment/40_2leadership_calculation_index.sh b/tests/results/test_examples_comment/40_2leadership_calculation_index.sh index 85b88c0a8..7a8d20a98 100644 --- a/tests/results/test_examples_comment/40_2leadership_calculation_index.sh +++ b/tests/results/test_examples_comment/40_2leadership_calculation_index.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: a # A leader  diff --git a/tests/results/test_examples_comment/40_2leadership_calculation_index_2.sh b/tests/results/test_examples_comment/40_2leadership_calculation_index_2.sh index 85b88c0a8..7a8d20a98 100644 --- a/tests/results/test_examples_comment/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_examples_comment/40_2leadership_calculation_index_2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: a # A leader  diff --git a/tests/results/test_examples_comment/40_6leadership_follower_multi.sh b/tests/results/test_examples_comment/40_6leadership_follower_multi.sh index 79f326236..79c1d7317 100644 --- a/tests/results/test_examples_comment/40_6leadership_follower_multi.sh +++ b/tests/results/test_examples_comment/40_6leadership_follower_multi.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  leadership: # A leadership   - leader: example # The leader   follower1: # The first follower   - example  - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: example # The leader  diff --git a/tests/results/test_examples_comment/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_examples_comment/40_6leadership_follower_multi_no_mandatory.sh index 0b8d9aa83..b708dfb4e 100644 --- a/tests/results/test_examples_comment/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_examples_comment/40_6leadership_follower_multi_no_mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: example # The leader  diff --git a/tests/results/test_examples_comment/40_8calculation_boolean.sh b/tests/results/test_examples_comment/40_8calculation_boolean.sh index e02ae8434..e14806d9e 100644 --- a/tests/results/test_examples_comment/40_8calculation_boolean.sh +++ b/tests/results/test_examples_comment/40_8calculation_boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  bool: false # A boolean variable  multi1: # A first multi variable  diff --git a/tests/results/test_examples_comment/40_8calculation_multi_variable.sh b/tests/results/test_examples_comment/40_8calculation_multi_variable.sh index f4ae3461a..5c08d473b 100644 --- a/tests/results/test_examples_comment/40_8calculation_multi_variable.sh +++ b/tests/results/test_examples_comment/40_8calculation_multi_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A first variable   - no  diff --git a/tests/results/test_examples_comment/40_8calculation_multi_variable_parent.sh b/tests/results/test_examples_comment/40_8calculation_multi_variable_parent.sh index f9d6a99de..cb80f02d0 100644 --- a/tests/results/test_examples_comment/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_examples_comment/40_8calculation_multi_variable_parent.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: no # A variable  fam1: # A family  diff --git a/tests/results/test_examples_comment/40_8calculation_multi_variable_parent2.sh b/tests/results/test_examples_comment/40_8calculation_multi_variable_parent2.sh index 961e7b386..b45c01751 100644 --- a/tests/results/test_examples_comment/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_examples_comment/40_8calculation_multi_variable_parent2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  fam1: # First family   var: no # A variable  diff --git a/tests/results/test_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh index 845913a54..b51e933ce 100644 --- a/tests/results/test_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-first.sh index 6c81e503a..f33a9062e 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-first.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-last.sh index 6c81e503a..f33a9062e 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-last.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh index f8112d69d..5d90f6f0f 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # leader   - leader: a  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower.sh index a7182bed3..46243833e 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-first.sh index e1048a186..93820d259 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-first.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-last.sh index c642d9ad2..102bde42c 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader-last.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader.sh b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader.sh index 340b7d928..f74f55a55 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-outside-leader.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-variable.sh b/tests/results/test_examples_comment/40_9leadership-calculation-variable.sh index a6bc93493..13ed1606e 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-variable.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  calculate: # A calculated variable   - value1  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower.sh index 3183d7118..b94286458 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership_1: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh index 0b55fb142..c18a6e8d3 100644 --- a/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership_1: # A leadership   - leader: value1 # A leader  diff --git a/tests/results/test_examples_comment/41_0choice_leader.sh b/tests/results/test_examples_comment/41_0choice_leader.sh index 5b82029d8..5196ea944 100644 --- a/tests/results/test_examples_comment/41_0choice_leader.sh +++ b/tests/results/test_examples_comment/41_0choice_leader.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # The leadership   - leader: example # The leader  diff --git a/tests/results/test_examples_comment/44_4disabled_calcultion_follower_index.sh b/tests/results/test_examples_comment/44_4disabled_calcultion_follower_index.sh index e3e999756..cf1036290 100644 --- a/tests/results/test_examples_comment/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_examples_comment/44_4disabled_calcultion_follower_index.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leadership: # A leadership   - leader: a # Aleader  diff --git a/tests/results/test_examples_comment/44_4leadership_mandatory.sh b/tests/results/test_examples_comment/44_4leadership_mandatory.sh index 95818c172..2c20ccaa1 100644 --- a/tests/results/test_examples_comment/44_4leadership_mandatory.sh +++ b/tests/results/test_examples_comment/44_4leadership_mandatory.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  leader: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/44_4leadership_mandatory_follower.sh b/tests/results/test_examples_comment/44_4leadership_mandatory_follower.sh index 06fe57206..a6780ef6e 100644 --- a/tests/results/test_examples_comment/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_examples_comment/44_4leadership_mandatory_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_examples_comment/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_examples_comment/44_5leadership_leader_hidden_calculation.sh index 924c192ca..0321ed8e2 100644 --- a/tests/results/test_examples_comment/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_examples_comment/44_5leadership_leader_hidden_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  condition: no # A condition  leader: # A leadership  diff --git a/tests/results/test_examples_comment/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_examples_comment/44_6leadership_follower_disabled_calculation.sh index 91eb17aa5..b8d890bd9 100644 --- a/tests/results/test_examples_comment/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_examples_comment/44_6leadership_follower_disabled_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  leader: # A leadership   - leader: example # A leader   follower: example # A follower  - - Example with all variables modifiable - ---  condition: yes # A condition  leader: # A leadership  diff --git a/tests/results/test_examples_comment/60_0family_dynamic.sh b/tests/results/test_examples_comment/60_0family_dynamic.sh index 4241b5109..8e2ecc23d 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example # A dynamic variable  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_1_1.sh b/tests/results/test_examples_comment/60_0family_dynamic_1_1.sh index 5f7971234..046efc36e 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_1_1.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_1_1.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   vardyn: example # A dynamic variable  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_1_1_empty.sh b/tests/results/test_examples_comment/60_0family_dynamic_1_1_empty.sh index 5f7971234..046efc36e 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_1_1_empty.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   vardyn: example # A dynamic variable  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_empty.sh b/tests/results/test_examples_comment/60_0family_dynamic_empty.sh index bb79aa85f..5afce3c67 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_empty.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_empty.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  dynexample: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - example  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_forbidden_char.sh b/tests/results/test_examples_comment/60_0family_dynamic_forbidden_char.sh index 33e6cab1b..9a53b133f 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_forbidden_char.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val.1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_no_description.sh b/tests/results/test_examples_comment/60_0family_dynamic_no_description.sh index c7e9c4ad3..24f35f0c1 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_no_description.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_no_description.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example  dynval2: # A dynamic family   var: example  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_no_description_empty.sh b/tests/results/test_examples_comment/60_0family_dynamic_no_description_empty.sh index c7e9c4ad3..24f35f0c1 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_no_description_empty.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example  dynval2: # A dynamic family   var: example  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_source_hidden.sh b/tests/results/test_examples_comment/60_0family_dynamic_source_hidden.sh index 0c3c2f498..5c66b1588 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_source_hidden.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example # A dynamic variable  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  dynval1: # A dynamic family   var: example # A dynamic variable  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_static.sh b/tests/results/test_examples_comment/60_0family_dynamic_static.sh index 1368d997f..9b11f5ada 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_static.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_static.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example # A variable inside a dynamic family  dynval2: # A dynamic family   var: example # A variable inside a dynamic family  - - Example with all variables modifiable - ---  dynval1: # A dynamic family   var: example # A variable inside a dynamic family  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_test.sh b/tests/results/test_examples_comment/60_0family_dynamic_test.sh index 63b705e2a..6895269a1 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_test.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_test.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  var: # A suffix variable   - val1  @@ -12,11 +9,8 @@ dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_upper_char.sh b/tests/results/test_examples_comment/60_0family_dynamic_upper_char.sh index af0276fa9..ff2d87bb2 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_upper_char.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   var: example # A dynamic variable  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var: # A suffix variable   - Val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_variable_empty.sh b/tests/results/test_examples_comment/60_0family_dynamic_variable_empty.sh index 087ebaecd..594e6ef6d 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_variable_empty.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  var: # A suffix variable   - example  - - Example with all variables modifiable - ---  var: # A suffix variable   - example  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_variable_optional.sh b/tests/results/test_examples_comment/60_0family_dynamic_variable_optional.sh index 2845976dc..9605fb99b 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_variable_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  dyna: # A dynamic family   var: val # A variable inside dynamic family  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix.sh b/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix.sh index 6ab873193..13e8d55c0 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix_empty.sh index 04fb82e82..31e2b259f 100644 --- a/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_examples_comment/60_0family_dynamic_variable_suffix_empty.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  var: # A suffix variable   - val1   - val2  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_0family_mode.sh b/tests/results/test_examples_comment/60_0family_mode.sh index f9d1efacb..c5ff23f94 100644 --- a/tests/results/test_examples_comment/60_0family_mode.sh +++ b/tests/results/test_examples_comment/60_0family_mode.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  family: # A family   var: non # A variable  diff --git a/tests/results/test_examples_comment/60_1family_dynamic_jinja.sh b/tests/results/test_examples_comment/60_1family_dynamic_jinja.sh index fe232befe..c3b1d444a 100644 --- a/tests/results/test_examples_comment/60_1family_dynamic_jinja.sh +++ b/tests/results/test_examples_comment/60_1family_dynamic_jinja.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh index d688564ef..c050a7988 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   family: # A family  @@ -11,11 +8,8 @@  family: # A family   var: example # With a variable  - - Example with all variables modifiable - ---  var1: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh index 1417ec8aa..77b460416 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A identifier variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 1417ec8aa..77b460416 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A identifier variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh index d688564ef..c050a7988 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   family: # A family  @@ -11,11 +8,8 @@  family: # A family   var: example # With a variable  - - Example with all variables modifiable - ---  var1: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_outside_calc.sh b/tests/results/test_examples_comment/60_2family_dynamic_outside_calc.sh index 81f251b01..81e9aaf1d 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_outside_calc.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A suffx variable   - val1  diff --git a/tests/results/test_examples_comment/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_examples_comment/60_2family_dynamic_outside_calc_empty.sh index 81f251b01..81e9aaf1d 100644 --- a/tests/results/test_examples_comment/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_examples_comment/60_2family_dynamic_outside_calc_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var1: # A suffx variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2.sh index 4225ab324..973880c43 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh index 4225ab324..973880c43 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh index d040c08d7..4fc4d4c61 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # dyn{{ identifier }}   var: example # A dynamic variable  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  dynval1: # dyn{{ identifier }}   var: example # A dynamic variable  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param.sh index d7ec4a209..d3d362548 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A identifier variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh index d7ec4a209..d3d362548 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A identifier variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable.sh index a65170619..05970f8fa 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # dyn{{ identifier }}   var: example # A dynamic variable  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var1: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled.sh index 20b614584..79f7b86c4 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic famify for {{ identifier }}   var1: example # A dynamic variable  @@ -11,11 +8,8 @@  var1: example # A dynamic variable   var2: example # A new variable  - - Example with all variables modifiable - ---  dynval1: # A dynamic famify for {{ identifier }}   var1: example # A dynamic variable  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh index 089152747..bddc63e1e 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic famify for {{ identifier }}   var1: example # A dynamic variable  @@ -10,11 +7,8 @@  var1: example # A dynamic variable  var2: example # A new variable  - - Example with all variables modifiable - ---  dynval1: # A dynamic famify for {{ identifier }}   var1: example # A dynamic variable  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_empty.sh index a65170619..05970f8fa 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_calc_variable_empty.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # dyn{{ identifier }}   var: example # A dynamic variable  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  var1: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_examples_comment/60_5family_dynamic_hidden_suffix.sh index 73b674189..6d2df6d89 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_hidden_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  dynval1: # A dynamic family   var: example # A variable  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix.sh index 93f78d41d..34c9257cb 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh index 42b4f0d16..c46f75c2c 100644 --- a/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  var: # Asuffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_6family_dynamic_leadership.sh b/tests/results/test_examples_comment/60_6family_dynamic_leadership.sh index 95f78963e..55ebcb58c 100644 --- a/tests/results/test_examples_comment/60_6family_dynamic_leadership.sh +++ b/tests/results/test_examples_comment/60_6family_dynamic_leadership.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   leadership: # A leadership  @@ -11,11 +8,8 @@  leadership: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_6family_dynamic_leadership_empty.sh b/tests/results/test_examples_comment/60_6family_dynamic_leadership_empty.sh index 95f78963e..55ebcb58c 100644 --- a/tests/results/test_examples_comment/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_examples_comment/60_6family_dynamic_leadership_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   leadership: # A leadership  @@ -11,11 +8,8 @@  leadership: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  var: # A suffix variable   - val1  diff --git a/tests/results/test_examples_comment/60_9family_dynamic_calc_both.sh b/tests/results/test_examples_comment/60_9family_dynamic_calc_both.sh index f7e2faf35..a1e40cba0 100644 --- a/tests/results/test_examples_comment/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_examples_comment/60_9family_dynamic_calc_both.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  dynval1: # A dynamic family   vardyn: example # A dynamic variable  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  var: val2 # A suffix variable  dynval1: # A dynamic family  diff --git a/tests/results/test_examples_comment/68_0family_leadership_mode.sh b/tests/results/test_examples_comment/68_0family_leadership_mode.sh index af44d351d..41bbac06e 100644 --- a/tests/results/test_examples_comment/68_0family_leadership_mode.sh +++ b/tests/results/test_examples_comment/68_0family_leadership_mode.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  leader: # A leadership   - leader: example # A leader  diff --git a/tests/results/test_namespace/00_0version_underscore.adoc b/tests/results/test_namespace/00_0version_underscore.adoc index 112e2149e..76f82b4d2 100644 --- a/tests/results/test_namespace/00_0version_underscore.adoc +++ b/tests/results/test_namespace/00_0version_underscore.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/00_0version_underscore.gitlab.md b/tests/results/test_namespace/00_0version_underscore.gitlab.md index 6ccdbbd60..fe81c5687 100644 --- a/tests/results/test_namespace/00_0version_underscore.gitlab.md +++ b/tests/results/test_namespace/00_0version_underscore.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_0version_underscore.html index e26d6bf0a..533819de2 100644 --- a/tests/results/test_namespace/00_0version_underscore.html +++ b/tests/results/test_namespace/00_0version_underscore.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - - diff --git a/tests/results/test_namespace/00_0version_underscore.md b/tests/results/test_namespace/00_0version_underscore.md index 4e75da024..6b4f97e54 100644 --- a/tests/results/test_namespace/00_0version_underscore.md +++ b/tests/results/test_namespace/00_0version_underscore.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_0version_underscore.sh b/tests/results/test_namespace/00_0version_underscore.sh index 1f0b162fc..eb8b0a0ed 100644 --- a/tests/results/test_namespace/00_0version_underscore.sh +++ b/tests/results/test_namespace/00_0version_underscore.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_1empty_variable.adoc b/tests/results/test_namespace/00_1empty_variable.adoc index 62681438e..35ff9b7e1 100644 --- a/tests/results/test_namespace/00_1empty_variable.adoc +++ b/tests/results/test_namespace/00_1empty_variable.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/00_1empty_variable.gitlab.md b/tests/results/test_namespace/00_1empty_variable.gitlab.md index 1fe2b2c32..e5a31587b 100644 --- a/tests/results/test_namespace/00_1empty_variable.gitlab.md +++ b/tests/results/test_namespace/00_1empty_variable.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test_namespace/00_1empty_variable.html b/tests/results/test_namespace/00_1empty_variable.html index 5c6907a14..187edad63 100644 --- a/tests/results/test_namespace/00_1empty_variable.html +++ b/tests/results/test_namespace/00_1empty_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_1empty_variable.md b/tests/results/test_namespace/00_1empty_variable.md index 0476d23b0..1fd6e1d27 100644 --- a/tests/results/test_namespace/00_1empty_variable.md +++ b/tests/results/test_namespace/00_1empty_variable.md @@ -1,11 +1,10 @@ -# Variables for "Rougail" +# Rougail > **๐Ÿ›ˆ Informations** > -> **rougail** +> **rougail**\ > `basic` - | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.empty**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test_namespace/00_1empty_variable.sh b/tests/results/test_namespace/00_1empty_variable.sh index c054ba47c..12f33204c 100644 --- a/tests/results/test_namespace/00_1empty_variable.sh +++ b/tests/results/test_namespace/00_1empty_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_2default_calculated.adoc b/tests/results/test_namespace/00_2default_calculated.adoc index d1e0522a6..47ebe4115 100644 --- a/tests/results/test_namespace/00_2default_calculated.adoc +++ b/tests/results/test_namespace/00_2default_calculated.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md index 94f65f0ae..d51c61189 100644 --- a/tests/results/test_namespace/00_2default_calculated.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated.html index 7625c6c70..752228ff4 100644 --- a/tests/results/test_namespace/00_2default_calculated.html +++ b/tests/results/test_namespace/00_2default_calculated.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated.md b/tests/results/test_namespace/00_2default_calculated.md index 8d3f5cddf..2551a74d3 100644 --- a/tests/results/test_namespace/00_2default_calculated.md +++ b/tests/results/test_namespace/00_2default_calculated.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated.sh b/tests/results/test_namespace/00_2default_calculated.sh index db6256d18..360d9ce03 100644 --- a/tests/results/test_namespace/00_2default_calculated.sh +++ b/tests/results/test_namespace/00_2default_calculated.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 88a5a7210..8aab769a4 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.adoc +++ b/tests/results/test_namespace/00_2default_calculated_multi.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md index bfbd93040..cd08df8b6 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated_multi.html index a8f97803c..07fe0b918 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.html +++ b/tests/results/test_namespace/00_2default_calculated_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.md b/tests/results/test_namespace/00_2default_calculated_multi.md index fb419116c..263805a6e 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_multi.sh b/tests/results/test_namespace/00_2default_calculated_multi.sh index c114f11bc..50ce35386 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.sh +++ b/tests/results/test_namespace/00_2default_calculated_multi.sh @@ -1,27 +1,18 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ 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 ce54d1227..aa577aa6d 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md index 7ff43e105..1169e95c4 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated_params_permissive.html index 0eb19d78c..9ab2d405b 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.html +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.md index e5540bb81..40489aa02 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.md +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c218f7b40..39f596239 100644 --- a/tests/results/test_namespace/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 d7eaebd71..29297478f 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md index 5ff9dcb10..2f4338743 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated_variable.html index 0871226f9..dd8cec490 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.html +++ b/tests/results/test_namespace/00_2default_calculated_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.md b/tests/results/test_namespace/00_2default_calculated_variable.md index 55db42715..ee2f5cf68 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.md +++ b/tests/results/test_namespace/00_2default_calculated_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_2default_calculated_variable.sh b/tests/results/test_namespace/00_2default_calculated_variable.sh index f46deac4a..3d2d573cf 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 73ceebc7f..7a053f371 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md index 7e8c8f88b..dbb1cbd6b 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated_variable_description.html index 9ae9faf53..75d47329f 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.html +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.md b/tests/results/test_namespace/00_2default_calculated_variable_description.md index 466ab19d7..b329beea5 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d79e55e62..5ba19270d 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_description.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 cbb53b3ed..f079ea553 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 @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md index a0fd540da..fc3da6366 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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_multi_line.html b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.html index fde5621d6..6051901e2 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md index 5d4f8c9c7..558e885e9 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 559c85ca9..2db78c58f 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 8c2ff0dba..e834163c6 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md index 5ad985a0b..b105e96ec 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html index 6b14f86c7..160f24d86 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.html +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md index 9e7575c55..5f62fd9e9 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e78b13354..a484c8955 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_4load_subfolder.adoc b/tests/results/test_namespace/00_4load_subfolder.adoc index c86f16aca..e4a9ab63c 100644 --- a/tests/results/test_namespace/00_4load_subfolder.adoc +++ b/tests/results/test_namespace/00_4load_subfolder.adoc @@ -1,23 +1,17 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/00_4load_subfolder.gitlab.md b/tests/results/test_namespace/00_4load_subfolder.gitlab.md index f41d68075..e34283458 100644 --- a/tests/results/test_namespace/00_4load_subfolder.gitlab.md +++ b/tests/results/test_namespace/00_4load_subfolder.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_4load_subfolder.html index 141b826d5..5d6354b68 100644 --- a/tests/results/test_namespace/00_4load_subfolder.html +++ b/tests/results/test_namespace/00_4load_subfolder.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_4load_subfolder.md b/tests/results/test_namespace/00_4load_subfolder.md index 3a6ff75ae..451b0002d 100644 --- a/tests/results/test_namespace/00_4load_subfolder.md +++ b/tests/results/test_namespace/00_4load_subfolder.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_4load_subfolder.sh b/tests/results/test_namespace/00_4load_subfolder.sh index e0ab8a689..21071c42b 100644 --- a/tests/results/test_namespace/00_4load_subfolder.sh +++ b/tests/results/test_namespace/00_4load_subfolder.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_5load_notype.adoc b/tests/results/test_namespace/00_5load_notype.adoc index 4b53d8b79..970de61e8 100644 --- a/tests/results/test_namespace/00_5load_notype.adoc +++ b/tests/results/test_namespace/00_5load_notype.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace/00_5load_notype.gitlab.md b/tests/results/test_namespace/00_5load_notype.gitlab.md index 436a52da9..136d44cda 100644 --- a/tests/results/test_namespace/00_5load_notype.gitlab.md +++ b/tests/results/test_namespace/00_5load_notype.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_5load_notype.html index 94fa1740c..60f7a34fa 100644 --- a/tests/results/test_namespace/00_5load_notype.html +++ b/tests/results/test_namespace/00_5load_notype.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_5load_notype.md b/tests/results/test_namespace/00_5load_notype.md index 791713091..46bdf3907 100644 --- a/tests/results/test_namespace/00_5load_notype.md +++ b/tests/results/test_namespace/00_5load_notype.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_5load_notype.sh b/tests/results/test_namespace/00_5load_notype.sh index 4c9a901ec..ad9ee989a 100644 --- a/tests/results/test_namespace/00_5load_notype.sh +++ b/tests/results/test_namespace/00_5load_notype.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6boolean.adoc b/tests/results/test_namespace/00_6boolean.adoc index 0e62527f8..529341413 100644 --- a/tests/results/test_namespace/00_6boolean.adoc +++ b/tests/results/test_namespace/00_6boolean.adoc @@ -1,49 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md index 024458874..94bb7141f 100644 --- a/tests/results/test_namespace/00_6boolean.gitlab.md +++ b/tests/results/test_namespace/00_6boolean.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6boolean.html index 44693d85d..75eb368ab 100644 --- a/tests/results/test_namespace/00_6boolean.html +++ b/tests/results/test_namespace/00_6boolean.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6boolean.md b/tests/results/test_namespace/00_6boolean.md index 6b854d92f..580906ba0 100644 --- a/tests/results/test_namespace/00_6boolean.md +++ b/tests/results/test_namespace/00_6boolean.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6boolean.sh b/tests/results/test_namespace/00_6boolean.sh index 682c72984..0e7185bda 100644 --- a/tests/results/test_namespace/00_6boolean.sh +++ b/tests/results/test_namespace/00_6boolean.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 4b2d6ca23..5ab168f69 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md index c2c4f02b0..05f15f1b4 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6boolean_no_mandatory.html index 98f1c515b..d404299b6 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.html +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.md b/tests/results/test_namespace/00_6boolean_no_mandatory.md index 529fc8508..0e210697b 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                        | Description                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.sh b/tests/results/test_namespace/00_6boolean_no_mandatory.sh index eb6dfddef..b0883397d 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.sh +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6choice.adoc b/tests/results/test_namespace/00_6choice.adoc index 64dc0d4d0..1066982ff 100644 --- a/tests/results/test_namespace/00_6choice.adoc +++ b/tests/results/test_namespace/00_6choice.adoc @@ -1,70 +1,52 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md index 5073ed886..e034d2319 100644 --- a/tests/results/test_namespace/00_6choice.gitlab.md +++ b/tests/results/test_namespace/00_6choice.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| | **rougail.var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice.html b/tests/results/test_namespace/00_6choice.html index 8ae6adbc9..40e57c347 100644 --- a/tests/results/test_namespace/00_6choice.html +++ b/tests/results/test_namespace/00_6choice.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice.md b/tests/results/test_namespace/00_6choice.md index 5a11dba9f..97b33b7a6 100644 --- a/tests/results/test_namespace/00_6choice.md +++ b/tests/results/test_namespace/00_6choice.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice.sh b/tests/results/test_namespace/00_6choice.sh index 6aa925623..a844cbb47 100644 --- a/tests/results/test_namespace/00_6choice.sh +++ b/tests/results/test_namespace/00_6choice.sh @@ -1,57 +1,48 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6choice_calculation.adoc b/tests/results/test_namespace/00_6choice_calculation.adoc index 41ae351ec..01007d36e 100644 --- a/tests/results/test_namespace/00_6choice_calculation.adoc +++ b/tests/results/test_namespace/00_6choice_calculation.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace/00_6choice_calculation.gitlab.md b/tests/results/test_namespace/00_6choice_calculation.gitlab.md index 2a9b08882..5ad1db15b 100644 --- a/tests/results/test_namespace/00_6choice_calculation.gitlab.md +++ b/tests/results/test_namespace/00_6choice_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6choice_calculation.html index 4ab3ebbd1..008adf877 100644 --- a/tests/results/test_namespace/00_6choice_calculation.html +++ b/tests/results/test_namespace/00_6choice_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_calculation.md b/tests/results/test_namespace/00_6choice_calculation.md index 83f847641..a183aebde 100644 --- a/tests/results/test_namespace/00_6choice_calculation.md +++ b/tests/results/test_namespace/00_6choice_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_calculation.sh b/tests/results/test_namespace/00_6choice_calculation.sh index 9b04c04ca..083ad2c10 100644 --- a/tests/results/test_namespace/00_6choice_calculation.sh +++ b/tests/results/test_namespace/00_6choice_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6choice_link.adoc b/tests/results/test_namespace/00_6choice_link.adoc index 017cf0887..b81d833ce 100644 --- a/tests/results/test_namespace/00_6choice_link.adoc +++ b/tests/results/test_namespace/00_6choice_link.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md index 3408af655..1fa2aefa0 100644 --- a/tests/results/test_namespace/00_6choice_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_link.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.
**Choices**:
- a
- b
- c | diff --git a/tests/results/test_namespace/00_6choice_link.html b/tests/results/test_namespace/00_6choice_link.html index 08f7884a1..3f9c9d905 100644 --- a/tests/results/test_namespace/00_6choice_link.html +++ b/tests/results/test_namespace/00_6choice_link.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_link.md b/tests/results/test_namespace/00_6choice_link.md index 985305be9..a99f89744 100644 --- a/tests/results/test_namespace/00_6choice_link.md +++ b/tests/results/test_namespace/00_6choice_link.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_link.sh b/tests/results/test_namespace/00_6choice_link.sh index 4a94dc298..0ccbcd892 100644 --- a/tests/results/test_namespace/00_6choice_link.sh +++ b/tests/results/test_namespace/00_6choice_link.sh @@ -1,33 +1,24 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6choice_variable.adoc b/tests/results/test_namespace/00_6choice_variable.adoc index 9ba24129f..4696c9b07 100644 --- a/tests/results/test_namespace/00_6choice_variable.adoc +++ b/tests/results/test_namespace/00_6choice_variable.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a |==== diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md index 0700f0ab6..ff70d96cf 100644 --- a/tests/results/test_namespace/00_6choice_variable.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6choice_variable.html index c253c5543..61963ab0b 100644 --- a/tests/results/test_namespace/00_6choice_variable.html +++ b/tests/results/test_namespace/00_6choice_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_variable.md b/tests/results/test_namespace/00_6choice_variable.md index cd77f791f..189f4e6f7 100644 --- a/tests/results/test_namespace/00_6choice_variable.md +++ b/tests/results/test_namespace/00_6choice_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable.sh b/tests/results/test_namespace/00_6choice_variable.sh index e04bf5a06..793b6899a 100644 --- a/tests/results/test_namespace/00_6choice_variable.sh +++ b/tests/results/test_namespace/00_6choice_variable.sh @@ -1,27 +1,18 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace/00_6choice_variable_link.adoc b/tests/results/test_namespace/00_6choice_variable_link.adoc index 46842a282..58d9bdbab 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.adoc +++ b/tests/results/test_namespace/00_6choice_variable_link.adoc @@ -1,36 +1,27 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md index 36286db0f..0cbd19439 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6choice_variable_link.html index 0df36f281..36d6fdce3 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.html +++ b/tests/results/test_namespace/00_6choice_variable_link.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_variable_link.md b/tests/results/test_namespace/00_6choice_variable_link.md index 75cc504fb..273292111 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.md +++ b/tests/results/test_namespace/00_6choice_variable_link.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6choice_variable_link.sh b/tests/results/test_namespace/00_6choice_variable_link.sh index b723b9070..00c00b2c9 100644 --- a/tests/results/test_namespace/00_6choice_variable_link.sh +++ b/tests/results/test_namespace/00_6choice_variable_link.sh @@ -1,27 +1,18 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace/00_6choice_variable_link2.adoc b/tests/results/test_namespace/00_6choice_variable_link2.adoc index 649657e80..994e90943 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.adoc +++ b/tests/results/test_namespace/00_6choice_variable_link2.adoc @@ -1,48 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a |==== === family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md index 71f823296..fcb620950 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 | @@ -12,9 +11,10 @@
family ->>> [!note] Informations -
**rougail.family**
`standard` ->>> +> [!note] Informations +> **rougail.family**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.family.var3**
[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.
**Choices**: the value of the variable "[`A second variable`](#rougail.var1)"
**Default**: the value of the variable "[`A first variable`](#rougail.var2)" | diff --git a/tests/results/test_namespace/00_6choice_variable_link2.html b/tests/results/test_namespace/00_6choice_variable_link2.html index 30d1e73e9..dfafb4520 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.html +++ b/tests/results/test_namespace/00_6choice_variable_link2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.md b/tests/results/test_namespace/00_6choice_variable_link2.md index 77e9e599c..f1e20e929 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.md +++ b/tests/results/test_namespace/00_6choice_variable_link2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,10 @@ ## family - - -| Informations | -|:------------| -| **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 4fb734309..87eadd982 100644 --- a/tests/results/test_namespace/00_6choice_variable_link2.sh +++ b/tests/results/test_namespace/00_6choice_variable_link2.sh @@ -1,42 +1,30 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ”‚ โ”‚ Default: a โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - family - -rougail.family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.family +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6custom.adoc b/tests/results/test_namespace/00_6custom.adoc index 04b63158a..28ecb2e50 100644 --- a/tests/results/test_namespace/00_6custom.adoc +++ b/tests/results/test_namespace/00_6custom.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md index 88b02883d..cb35f4118 100644 --- a/tests/results/test_namespace/00_6custom.gitlab.md +++ b/tests/results/test_namespace/00_6custom.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6custom.html index 23b870d7f..2754f6829 100644 --- a/tests/results/test_namespace/00_6custom.html +++ b/tests/results/test_namespace/00_6custom.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6custom.md b/tests/results/test_namespace/00_6custom.md index 1b7f8b9ba..6a6f85aea 100644 --- a/tests/results/test_namespace/00_6custom.md +++ b/tests/results/test_namespace/00_6custom.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6custom.sh b/tests/results/test_namespace/00_6custom.sh index cf8451245..3da5c0a84 100644 --- a/tests/results/test_namespace/00_6custom.sh +++ b/tests/results/test_namespace/00_6custom.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6domainname.adoc b/tests/results/test_namespace/00_6domainname.adoc index 4264add66..cb920c1c5 100644 --- a/tests/results/test_namespace/00_6domainname.adoc +++ b/tests/results/test_namespace/00_6domainname.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md index e7244189a..03be8e06b 100644 --- a/tests/results/test_namespace/00_6domainname.gitlab.md +++ b/tests/results/test_namespace/00_6domainname.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6domainname.html index 680005fa6..8689838d2 100644 --- a/tests/results/test_namespace/00_6domainname.html +++ b/tests/results/test_namespace/00_6domainname.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6domainname.md b/tests/results/test_namespace/00_6domainname.md index 3a4fe8ba0..fb6737fad 100644 --- a/tests/results/test_namespace/00_6domainname.md +++ b/tests/results/test_namespace/00_6domainname.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                       | Description                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6domainname.sh b/tests/results/test_namespace/00_6domainname.sh index c3579219f..05152ea7a 100644 --- a/tests/results/test_namespace/00_6domainname.sh +++ b/tests/results/test_namespace/00_6domainname.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6domainname_params.adoc b/tests/results/test_namespace/00_6domainname_params.adoc index 1119e02ed..e577a46c6 100644 --- a/tests/results/test_namespace/00_6domainname_params.adoc +++ b/tests/results/test_namespace/00_6domainname_params.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `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.gitlab.md b/tests/results/test_namespace/00_6domainname_params.gitlab.md index b43a8274a..85c93942e 100644 --- a/tests/results/test_namespace/00_6domainname_params.gitlab.md +++ b/tests/results/test_namespace/00_6domainname_params.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6domainname_params.html index 3febac9f3..32ef9ab96 100644 --- a/tests/results/test_namespace/00_6domainname_params.html +++ b/tests/results/test_namespace/00_6domainname_params.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6domainname_params.md b/tests/results/test_namespace/00_6domainname_params.md index 808448ff5..931004e03 100644 --- a/tests/results/test_namespace/00_6domainname_params.md +++ b/tests/results/test_namespace/00_6domainname_params.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                       | Description                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6domainname_params.sh b/tests/results/test_namespace/00_6domainname_params.sh index 4ac9525ef..dc7d3fd7b 100644 --- a/tests/results/test_namespace/00_6domainname_params.sh +++ b/tests/results/test_namespace/00_6domainname_params.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6float.adoc b/tests/results/test_namespace/00_6float.adoc index f84605a85..7182b5086 100644 --- a/tests/results/test_namespace/00_6float.adoc +++ b/tests/results/test_namespace/00_6float.adoc @@ -1,49 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md index 4049d730c..b8419d784 100644 --- a/tests/results/test_namespace/00_6float.gitlab.md +++ b/tests/results/test_namespace/00_6float.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6float.html index a38bdb092..90c2f95a4 100644 --- a/tests/results/test_namespace/00_6float.html +++ b/tests/results/test_namespace/00_6float.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6float.md b/tests/results/test_namespace/00_6float.md index 44caf69b6..89463d1ac 100644 --- a/tests/results/test_namespace/00_6float.md +++ b/tests/results/test_namespace/00_6float.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                  | Description                                                                                               | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6float.sh b/tests/results/test_namespace/00_6float.sh index ffe01d8cc..df4134b57 100644 --- a/tests/results/test_namespace/00_6float.sh +++ b/tests/results/test_namespace/00_6float.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6integer.adoc b/tests/results/test_namespace/00_6integer.adoc index 97b9753e4..a9e393d64 100644 --- a/tests/results/test_namespace/00_6integer.adoc +++ b/tests/results/test_namespace/00_6integer.adoc @@ -1,49 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md index 378582990..172dbf7b0 100644 --- a/tests/results/test_namespace/00_6integer.gitlab.md +++ b/tests/results/test_namespace/00_6integer.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6integer.html index 857b8444d..2a795ba92 100644 --- a/tests/results/test_namespace/00_6integer.html +++ b/tests/results/test_namespace/00_6integer.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6integer.md b/tests/results/test_namespace/00_6integer.md index a27715439..06ec2b304 100644 --- a/tests/results/test_namespace/00_6integer.md +++ b/tests/results/test_namespace/00_6integer.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6integer.sh b/tests/results/test_namespace/00_6integer.sh index 1bee9a831..010ea91c3 100644 --- a/tests/results/test_namespace/00_6integer.sh +++ b/tests/results/test_namespace/00_6integer.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6ip.adoc b/tests/results/test_namespace/00_6ip.adoc index c6c50daa2..dfb352b9b 100644 --- a/tests/results/test_namespace/00_6ip.adoc +++ b/tests/results/test_namespace/00_6ip.adoc @@ -1,26 +1,20 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -28,11 +22,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md index df940bc2f..bfe4ae162 100644 --- a/tests/results/test_namespace/00_6ip.gitlab.md +++ b/tests/results/test_namespace/00_6ip.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6ip.html index bcc3052c8..531c93cdb 100644 --- a/tests/results/test_namespace/00_6ip.html +++ b/tests/results/test_namespace/00_6ip.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6ip.md b/tests/results/test_namespace/00_6ip.md index 45aacaf6e..39b33e4e2 100644 --- a/tests/results/test_namespace/00_6ip.md +++ b/tests/results/test_namespace/00_6ip.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6ip.sh b/tests/results/test_namespace/00_6ip.sh index d7d222684..09b77c6ed 100644 --- a/tests/results/test_namespace/00_6ip.sh +++ b/tests/results/test_namespace/00_6ip.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,8 +14,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test_namespace/00_6network.adoc b/tests/results/test_namespace/00_6network.adoc index e4e12562a..2cec85b7d 100644 --- a/tests/results/test_namespace/00_6network.adoc +++ b/tests/results/test_namespace/00_6network.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md index 9f1811cd9..0c179aebe 100644 --- a/tests/results/test_namespace/00_6network.gitlab.md +++ b/tests/results/test_namespace/00_6network.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6network.html index b01551f56..bc21a4b85 100644 --- a/tests/results/test_namespace/00_6network.html +++ b/tests/results/test_namespace/00_6network.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6network.md b/tests/results/test_namespace/00_6network.md index 7a64eb103..bb228ece5 100644 --- a/tests/results/test_namespace/00_6network.md +++ b/tests/results/test_namespace/00_6network.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                         | Description                                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6network.sh b/tests/results/test_namespace/00_6network.sh index 9e9dae872..f1ef8915f 100644 --- a/tests/results/test_namespace/00_6network.sh +++ b/tests/results/test_namespace/00_6network.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6number.adoc b/tests/results/test_namespace/00_6number.adoc index 97b9753e4..a9e393d64 100644 --- a/tests/results/test_namespace/00_6number.adoc +++ b/tests/results/test_namespace/00_6number.adoc @@ -1,49 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md index 378582990..172dbf7b0 100644 --- a/tests/results/test_namespace/00_6number.gitlab.md +++ b/tests/results/test_namespace/00_6number.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6number.html index 857b8444d..2a795ba92 100644 --- a/tests/results/test_namespace/00_6number.html +++ b/tests/results/test_namespace/00_6number.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6number.md b/tests/results/test_namespace/00_6number.md index a27715439..06ec2b304 100644 --- a/tests/results/test_namespace/00_6number.md +++ b/tests/results/test_namespace/00_6number.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6number.sh b/tests/results/test_namespace/00_6number.sh index 1bee9a831..010ea91c3 100644 --- a/tests/results/test_namespace/00_6number.sh +++ b/tests/results/test_namespace/00_6number.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6port.adoc b/tests/results/test_namespace/00_6port.adoc index 5de4d4254..662dd9207 100644 --- a/tests/results/test_namespace/00_6port.adoc +++ b/tests/results/test_namespace/00_6port.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -31,11 +25,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**rougail.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **rougail.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md index 73f94d341..ef6798f9f 100644 --- a/tests/results/test_namespace/00_6port.gitlab.md +++ b/tests/results/test_namespace/00_6port.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6port.html index c91f070de..b3bbf88d2 100644 --- a/tests/results/test_namespace/00_6port.html +++ b/tests/results/test_namespace/00_6port.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6port.md b/tests/results/test_namespace/00_6port.md index a9c506a5c..93450e72d 100644 --- a/tests/results/test_namespace/00_6port.md +++ b/tests/results/test_namespace/00_6port.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6port.sh b/tests/results/test_namespace/00_6port.sh index 8c659f2b0..b40332086 100644 --- a/tests/results/test_namespace/00_6port.sh +++ b/tests/results/test_namespace/00_6port.sh @@ -1,50 +1,41 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6regexp.adoc b/tests/results/test_namespace/00_6regexp.adoc index 8030e44b7..5db77b035 100644 --- a/tests/results/test_namespace/00_6regexp.adoc +++ b/tests/results/test_namespace/00_6regexp.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md index ee806750a..1066d7f74 100644 --- a/tests/results/test_namespace/00_6regexp.gitlab.md +++ b/tests/results/test_namespace/00_6regexp.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6regexp.html index 4906db608..8b537efaa 100644 --- a/tests/results/test_namespace/00_6regexp.html +++ b/tests/results/test_namespace/00_6regexp.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6regexp.md b/tests/results/test_namespace/00_6regexp.md index 6b2499df1..8ded93a3d 100644 --- a/tests/results/test_namespace/00_6regexp.md +++ b/tests/results/test_namespace/00_6regexp.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6regexp.sh b/tests/results/test_namespace/00_6regexp.sh index ccb2f4045..fb3d25e24 100644 --- a/tests/results/test_namespace/00_6regexp.sh +++ b/tests/results/test_namespace/00_6regexp.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,7 +14,7 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6regexp_link.adoc b/tests/results/test_namespace/00_6regexp_link.adoc index 50fe78d28..1df5c38c4 100644 --- a/tests/results/test_namespace/00_6regexp_link.adoc +++ b/tests/results/test_namespace/00_6regexp_link.adoc @@ -1,30 +1,24 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "rougail.var1" + **Examples**: diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md index 8e954a217..59fa7c1ee 100644 --- a/tests/results/test_namespace/00_6regexp_link.gitlab.md +++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var1**
[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"
**Default**: #a1a1a1
**Examples**:
- #b1b1b1
- #b2b2b2 | diff --git a/tests/results/test_namespace/00_6regexp_link.html b/tests/results/test_namespace/00_6regexp_link.html index 335413cd6..5047fb9d1 100644 --- a/tests/results/test_namespace/00_6regexp_link.html +++ b/tests/results/test_namespace/00_6regexp_link.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_6regexp_link.md b/tests/results/test_namespace/00_6regexp_link.md index e2276d047..94db4b46c 100644 --- a/tests/results/test_namespace/00_6regexp_link.md +++ b/tests/results/test_namespace/00_6regexp_link.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6regexp_link.sh b/tests/results/test_namespace/00_6regexp_link.sh index 58755ba43..db79333f7 100644 --- a/tests/results/test_namespace/00_6regexp_link.sh +++ b/tests/results/test_namespace/00_6regexp_link.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,8 +14,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -33,7 +24,7 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6secret.adoc b/tests/results/test_namespace/00_6secret.adoc index e4367d290..de6ac2240 100644 --- a/tests/results/test_namespace/00_6secret.adoc +++ b/tests/results/test_namespace/00_6secret.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md index 6b7b9015d..bea5e6bcb 100644 --- a/tests/results/test_namespace/00_6secret.gitlab.md +++ b/tests/results/test_namespace/00_6secret.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6secret.html index fe962e7f8..a024c08cb 100644 --- a/tests/results/test_namespace/00_6secret.html +++ b/tests/results/test_namespace/00_6secret.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6secret.md b/tests/results/test_namespace/00_6secret.md index 7d4a637a5..b2ff954b5 100644 --- a/tests/results/test_namespace/00_6secret.md +++ b/tests/results/test_namespace/00_6secret.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6secret.sh b/tests/results/test_namespace/00_6secret.sh index a4c642d02..77f993a24 100644 --- a/tests/results/test_namespace/00_6secret.sh +++ b/tests/results/test_namespace/00_6secret.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_6secret_param.adoc b/tests/results/test_namespace/00_6secret_param.adoc index d1d8c36f0..5c449990e 100644 --- a/tests/results/test_namespace/00_6secret_param.adoc +++ b/tests/results/test_namespace/00_6secret_param.adoc @@ -1,36 +1,27 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**rougail.secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **rougail.secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test_namespace/00_6secret_param.gitlab.md b/tests/results/test_namespace/00_6secret_param.gitlab.md index a1814e1b6..e2cfe8114 100644 --- a/tests/results/test_namespace/00_6secret_param.gitlab.md +++ b/tests/results/test_namespace/00_6secret_param.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6secret_param.html index ba2d21709..580f9ce4a 100644 --- a/tests/results/test_namespace/00_6secret_param.html +++ b/tests/results/test_namespace/00_6secret_param.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6secret_param.md b/tests/results/test_namespace/00_6secret_param.md index 6c5a87528..be0bf26b9 100644 --- a/tests/results/test_namespace/00_6secret_param.md +++ b/tests/results/test_namespace/00_6secret_param.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6secret_param.sh b/tests/results/test_namespace/00_6secret_param.sh index 26eb4ff8e..860e25088 100644 --- a/tests/results/test_namespace/00_6secret_param.sh +++ b/tests/results/test_namespace/00_6secret_param.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,16 +14,16 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_6string.adoc b/tests/results/test_namespace/00_6string.adoc index cd865df8a..6b5f8d915 100644 --- a/tests/results/test_namespace/00_6string.adoc +++ b/tests/results/test_namespace/00_6string.adoc @@ -1,58 +1,34 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md index c4541b95a..523b93f90 100644 --- a/tests/results/test_namespace/00_6string.gitlab.md +++ b/tests/results/test_namespace/00_6string.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_6string.html index c3b199513..a9d10384c 100644 --- a/tests/results/test_namespace/00_6string.html +++ b/tests/results/test_namespace/00_6string.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_6string.md b/tests/results/test_namespace/00_6string.md index 10803611a..7003dcc64 100644 --- a/tests/results/test_namespace/00_6string.md +++ b/tests/results/test_namespace/00_6string.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_6string.sh b/tests/results/test_namespace/00_6string.sh index 50d91f94d..0a6826422 100644 --- a/tests/results/test_namespace/00_6string.sh +++ b/tests/results/test_namespace/00_6string.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7choice_quote.adoc b/tests/results/test_namespace/00_7choice_quote.adoc index ba45b1006..be1879f7c 100644 --- a/tests/results/test_namespace/00_7choice_quote.adoc +++ b/tests/results/test_namespace/00_7choice_quote.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test_namespace/00_7choice_quote.gitlab.md b/tests/results/test_namespace/00_7choice_quote.gitlab.md index be103f2fc..b13be11f0 100644 --- a/tests/results/test_namespace/00_7choice_quote.gitlab.md +++ b/tests/results/test_namespace/00_7choice_quote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7choice_quote.html index e041f8f6f..31b8eebe8 100644 --- a/tests/results/test_namespace/00_7choice_quote.html +++ b/tests/results/test_namespace/00_7choice_quote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_7choice_quote.md b/tests/results/test_namespace/00_7choice_quote.md index c45d94e0f..754658541 100644 --- a/tests/results/test_namespace/00_7choice_quote.md +++ b/tests/results/test_namespace/00_7choice_quote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7choice_quote.sh b/tests/results/test_namespace/00_7choice_quote.sh index 147142e04..40c2d6dcf 100644 --- a/tests/results/test_namespace/00_7choice_quote.sh +++ b/tests/results/test_namespace/00_7choice_quote.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_7help.adoc b/tests/results/test_namespace/00_7help.adoc index 5130d12a0..ca3643b2a 100644 --- a/tests/results/test_namespace/00_7help.adoc +++ b/tests/results/test_namespace/00_7help.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md index bf3f2c700..3875ab0c5 100644 --- a/tests/results/test_namespace/00_7help.gitlab.md +++ b/tests/results/test_namespace/00_7help.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7help.html index a3b43d02f..320971b12 100644 --- a/tests/results/test_namespace/00_7help.html +++ b/tests/results/test_namespace/00_7help.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_7help.md b/tests/results/test_namespace/00_7help.md index 771c862b7..b5fd8cbfb 100644 --- a/tests/results/test_namespace/00_7help.md +++ b/tests/results/test_namespace/00_7help.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7help.sh b/tests/results/test_namespace/00_7help.sh index d14b871ec..0a9254666 100644 --- a/tests/results/test_namespace/00_7help.sh +++ b/tests/results/test_namespace/00_7help.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7help_quote.adoc b/tests/results/test_namespace/00_7help_quote.adoc index 2488b6f02..d2b2b56e7 100644 --- a/tests/results/test_namespace/00_7help_quote.adoc +++ b/tests/results/test_namespace/00_7help_quote.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test_namespace/00_7help_quote.gitlab.md b/tests/results/test_namespace/00_7help_quote.gitlab.md index 011c47b14..e592fc5d2 100644 --- a/tests/results/test_namespace/00_7help_quote.gitlab.md +++ b/tests/results/test_namespace/00_7help_quote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7help_quote.html index 64f617db7..5e103e523 100644 --- a/tests/results/test_namespace/00_7help_quote.html +++ b/tests/results/test_namespace/00_7help_quote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_7help_quote.md b/tests/results/test_namespace/00_7help_quote.md index f78b4b6c3..f1fea4315 100644 --- a/tests/results/test_namespace/00_7help_quote.md +++ b/tests/results/test_namespace/00_7help_quote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7help_quote.sh b/tests/results/test_namespace/00_7help_quote.sh index 509b087d0..556b2a511 100644 --- a/tests/results/test_namespace/00_7help_quote.sh +++ b/tests/results/test_namespace/00_7help_quote.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7help_sup.adoc b/tests/results/test_namespace/00_7help_sup.adoc index 02f1a6002..e94069f51 100644 --- a/tests/results/test_namespace/00_7help_sup.adoc +++ b/tests/results/test_namespace/00_7help_sup.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test_namespace/00_7help_sup.gitlab.md b/tests/results/test_namespace/00_7help_sup.gitlab.md index 4cbbab3d3..bc832c2fe 100644 --- a/tests/results/test_namespace/00_7help_sup.gitlab.md +++ b/tests/results/test_namespace/00_7help_sup.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7help_sup.html index 089f18564..5a13cbb12 100644 --- a/tests/results/test_namespace/00_7help_sup.html +++ b/tests/results/test_namespace/00_7help_sup.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_7help_sup.md b/tests/results/test_namespace/00_7help_sup.md index b303cb850..d63caa0cb 100644 --- a/tests/results/test_namespace/00_7help_sup.md +++ b/tests/results/test_namespace/00_7help_sup.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7help_sup.sh b/tests/results/test_namespace/00_7help_sup.sh index b057037b0..0c77ad91a 100644 --- a/tests/results/test_namespace/00_7help_sup.sh +++ b/tests/results/test_namespace/00_7help_sup.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7value_doublequote.adoc b/tests/results/test_namespace/00_7value_doublequote.adoc index d2350dd7e..34c8414c3 100644 --- a/tests/results/test_namespace/00_7value_doublequote.adoc +++ b/tests/results/test_namespace/00_7value_doublequote.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test_namespace/00_7value_doublequote.gitlab.md b/tests/results/test_namespace/00_7value_doublequote.gitlab.md index c5c662052..89ee61f5e 100644 --- a/tests/results/test_namespace/00_7value_doublequote.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7value_doublequote.html index 976e739ca..cb679b176 100644 --- a/tests/results/test_namespace/00_7value_doublequote.html +++ b/tests/results/test_namespace/00_7value_doublequote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote.md b/tests/results/test_namespace/00_7value_doublequote.md index 9e3d66f82..eeabd339d 100644 --- a/tests/results/test_namespace/00_7value_doublequote.md +++ b/tests/results/test_namespace/00_7value_doublequote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote.sh b/tests/results/test_namespace/00_7value_doublequote.sh index 68342ba13..c43b45143 100644 --- a/tests/results/test_namespace/00_7value_doublequote.sh +++ b/tests/results/test_namespace/00_7value_doublequote.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7value_doublequote2.adoc b/tests/results/test_namespace/00_7value_doublequote2.adoc index edab13865..c94e41313 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.adoc +++ b/tests/results/test_namespace/00_7value_doublequote2.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md index 00c528b4b..d005bd1e4 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7value_doublequote2.html index 03e7aeb18..9ad5869ae 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.html +++ b/tests/results/test_namespace/00_7value_doublequote2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote2.md b/tests/results/test_namespace/00_7value_doublequote2.md index c5e863b42..25d9298c4 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.md +++ b/tests/results/test_namespace/00_7value_doublequote2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote2.sh b/tests/results/test_namespace/00_7value_doublequote2.sh index 885f6c005..ee6d88994 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.sh +++ b/tests/results/test_namespace/00_7value_doublequote2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7value_doublequote3.adoc b/tests/results/test_namespace/00_7value_doublequote3.adoc index a6b975e45..33ccae8dd 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.adoc +++ b/tests/results/test_namespace/00_7value_doublequote3.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md index 57e3dfe12..fda328510 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md +++ b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7value_doublequote3.html index 4b8e8a914..620451818 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.html +++ b/tests/results/test_namespace/00_7value_doublequote3.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_7value_doublequote3.md b/tests/results/test_namespace/00_7value_doublequote3.md index 525245ee8..5f20de9da 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.md +++ b/tests/results/test_namespace/00_7value_doublequote3.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7value_doublequote3.sh b/tests/results/test_namespace/00_7value_doublequote3.sh index 45dd18a4f..f6c6ff750 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.sh +++ b/tests/results/test_namespace/00_7value_doublequote3.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_7value_quote.adoc b/tests/results/test_namespace/00_7value_quote.adoc index d579e0935..3c2c230bf 100644 --- a/tests/results/test_namespace/00_7value_quote.adoc +++ b/tests/results/test_namespace/00_7value_quote.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test_namespace/00_7value_quote.gitlab.md b/tests/results/test_namespace/00_7value_quote.gitlab.md index 207a6bb18..658239c88 100644 --- a/tests/results/test_namespace/00_7value_quote.gitlab.md +++ b/tests/results/test_namespace/00_7value_quote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_7value_quote.html index 0af35e8a5..f614fbaa3 100644 --- a/tests/results/test_namespace/00_7value_quote.html +++ b/tests/results/test_namespace/00_7value_quote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_7value_quote.md b/tests/results/test_namespace/00_7value_quote.md index d21224077..0a1a646d6 100644 --- a/tests/results/test_namespace/00_7value_quote.md +++ b/tests/results/test_namespace/00_7value_quote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_7value_quote.sh b/tests/results/test_namespace/00_7value_quote.sh index b76c22a7f..a81eb3b77 100644 --- a/tests/results/test_namespace/00_7value_quote.sh +++ b/tests/results/test_namespace/00_7value_quote.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_8calculation_information.adoc b/tests/results/test_namespace/00_8calculation_information.adoc index 4cae9a049..8e5b1951c 100644 --- a/tests/results/test_namespace/00_8calculation_information.adoc +++ b/tests/results/test_namespace/00_8calculation_information.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace/00_8calculation_information.gitlab.md b/tests/results/test_namespace/00_8calculation_information.gitlab.md index dd0e87de6..8cbd9e2c2 100644 --- a/tests/results/test_namespace/00_8calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_information.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_8calculation_information.html index 2b08836ff..e278a072f 100644 --- a/tests/results/test_namespace/00_8calculation_information.html +++ b/tests/results/test_namespace/00_8calculation_information.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_8calculation_information.md b/tests/results/test_namespace/00_8calculation_information.md index ba42197ac..e5b0d89b2 100644 --- a/tests/results/test_namespace/00_8calculation_information.md +++ b/tests/results/test_namespace/00_8calculation_information.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_information.sh b/tests/results/test_namespace/00_8calculation_information.sh index df5ec1af6..6c9b100b2 100644 --- a/tests/results/test_namespace/00_8calculation_information.sh +++ b/tests/results/test_namespace/00_8calculation_information.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_8calculation_namespace.adoc b/tests/results/test_namespace/00_8calculation_namespace.adoc index 7adc6af6b..8a920d971 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.adoc +++ b/tests/results/test_namespace/00_8calculation_namespace.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the namespace |==== diff --git a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md index 451b9cb76..0a824d886 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_8calculation_namespace.html index 8e7fd4c95..16cf4d363 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.html +++ b/tests/results/test_namespace/00_8calculation_namespace.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_8calculation_namespace.md b/tests/results/test_namespace/00_8calculation_namespace.md index c73ec670a..b1e43ef94 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.md +++ b/tests/results/test_namespace/00_8calculation_namespace.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_namespace.sh b/tests/results/test_namespace/00_8calculation_namespace.sh index 1fc5854c2..4fb8ec1a5 100644 --- a/tests/results/test_namespace/00_8calculation_namespace.sh +++ b/tests/results/test_namespace/00_8calculation_namespace.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 050e3aadc..b57f8b635 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.adoc +++ b/tests/results/test_namespace/00_8calculation_param_namespace.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md index 2c128eeec..230c7afc1 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_8calculation_param_namespace.html index 8c8fbf3ac..d5e982def 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.html +++ b/tests/results/test_namespace/00_8calculation_param_namespace.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.md b/tests/results/test_namespace/00_8calculation_param_namespace.md index 15ff9da55..3012aafb3 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.md +++ b/tests/results/test_namespace/00_8calculation_param_namespace.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.sh b/tests/results/test_namespace/00_8calculation_param_namespace.sh index d5a63a6a1..47f13735e 100644 --- a/tests/results/test_namespace/00_8calculation_param_namespace.sh +++ b/tests/results/test_namespace/00_8calculation_param_namespace.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_8test.adoc b/tests/results/test_namespace/00_8test.adoc index cf1bd3e89..76201dd6e 100644 --- a/tests/results/test_namespace/00_8test.adoc +++ b/tests/results/test_namespace/00_8test.adoc @@ -1,58 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md index 095a90f36..3b02c36c8 100644 --- a/tests/results/test_namespace/00_8test.gitlab.md +++ b/tests/results/test_namespace/00_8test.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_8test.html index 97edabed3..0d0ea6ed1 100644 --- a/tests/results/test_namespace/00_8test.html +++ b/tests/results/test_namespace/00_8test.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_8test.md b/tests/results/test_namespace/00_8test.md index d762774d1..650dc0c62 100644 --- a/tests/results/test_namespace/00_8test.md +++ b/tests/results/test_namespace/00_8test.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_8test.sh b/tests/results/test_namespace/00_8test.sh index abb2af717..779602767 100644 --- a/tests/results/test_namespace/00_8test.sh +++ b/tests/results/test_namespace/00_8test.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -26,14 +17,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -41,7 +32,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9choice_variable_multi.adoc b/tests/results/test_namespace/00_9choice_variable_multi.adoc index 2aa65cddd..87a8c91f5 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.adoc +++ b/tests/results/test_namespace/00_9choice_variable_multi.adoc @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md index 3e82c95ed..638ab78bd 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9choice_variable_multi.html index 7f4a57af7..1b4a6f5ce 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.html +++ b/tests/results/test_namespace/00_9choice_variable_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_9choice_variable_multi.md b/tests/results/test_namespace/00_9choice_variable_multi.md index efca86c55..3c01443bb 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9choice_variable_multi.sh b/tests/results/test_namespace/00_9choice_variable_multi.sh index 470734853..ae16da017 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace/00_9choice_variable_multi.sh @@ -1,30 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9choice_variables.adoc b/tests/results/test_namespace/00_9choice_variables.adoc index 0a54ae3a8..16951d10b 100644 --- a/tests/results/test_namespace/00_9choice_variables.adoc +++ b/tests/results/test_namespace/00_9choice_variables.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **rougail.source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**rougail.source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **rougail.source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "rougail.source_variable_1" diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md index 68ed274f4..95f351189 100644 --- a/tests/results/test_namespace/00_9choice_variables.gitlab.md +++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.source_variable_1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.
**Default**: val1 | diff --git a/tests/results/test_namespace/00_9choice_variables.html b/tests/results/test_namespace/00_9choice_variables.html index e24b47a80..b7929c631 100644 --- a/tests/results/test_namespace/00_9choice_variables.html +++ b/tests/results/test_namespace/00_9choice_variables.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9choice_variables.md b/tests/results/test_namespace/00_9choice_variables.md index bbac48ceb..4fa4247aa 100644 --- a/tests/results/test_namespace/00_9choice_variables.md +++ b/tests/results/test_namespace/00_9choice_variables.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9choice_variables.sh b/tests/results/test_namespace/00_9choice_variables.sh index 26c038a30..c20154565 100644 --- a/tests/results/test_namespace/00_9choice_variables.sh +++ b/tests/results/test_namespace/00_9choice_variables.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -25,9 +16,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9default_calculation.adoc b/tests/results/test_namespace/00_9default_calculation.adoc index e144fe43d..e8d14ce44 100644 --- a/tests/results/test_namespace/00_9default_calculation.adoc +++ b/tests/results/test_namespace/00_9default_calculation.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test_namespace/00_9default_calculation.gitlab.md b/tests/results/test_namespace/00_9default_calculation.gitlab.md index e0e7af02c..abf0d8f4e 100644 --- a/tests/results/test_namespace/00_9default_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation.html index 166733953..38b59a004 100644 --- a/tests/results/test_namespace/00_9default_calculation.html +++ b/tests/results/test_namespace/00_9default_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation.md b/tests/results/test_namespace/00_9default_calculation.md index da6a7cd4e..5e1f617dc 100644 --- a/tests/results/test_namespace/00_9default_calculation.md +++ b/tests/results/test_namespace/00_9default_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation.sh b/tests/results/test_namespace/00_9default_calculation.sh index d9b0aebce..43bea37cf 100644 --- a/tests/results/test_namespace/00_9default_calculation.sh +++ b/tests/results/test_namespace/00_9default_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 f15c80a44..ea4c32f5e 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.adoc +++ b/tests/results/test_namespace/00_9default_calculation_information.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md index 6f198f7aa..472f18c81 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_information.html index 9e8065f92..91b7c23ab 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.html +++ b/tests/results/test_namespace/00_9default_calculation_information.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_information.md b/tests/results/test_namespace/00_9default_calculation_information.md index 977e35b94..524f8b30e 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.md +++ b/tests/results/test_namespace/00_9default_calculation_information.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation_information.sh b/tests/results/test_namespace/00_9default_calculation_information.sh index 18c8af1f6..069b77059 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.sh +++ b/tests/results/test_namespace/00_9default_calculation_information.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 e7029d118..546838c06 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 @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md index add33b6c9..7f987f6ef 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_information_other_variable.html index 53390d5c0..879b1716d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.md index 276ddae42..100de9676 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 66662e464..1a1907a1d 100644 --- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 d41eb6a1a..3cf837436 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md index 0834956c8..6c4dd3011 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_multi_optional.html index 3ef21f861..7c0aeb1bb 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.md b/tests/results/test_namespace/00_9default_calculation_multi_optional.md index 44c3c4462..a597854e1 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d93f2e273..fafd439f7 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,7 +12,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc index d41eb6a1a..3cf837436 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md index 0834956c8..6c4dd3011 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html index 3ef21f861..7c0aeb1bb 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.html +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md index 44c3c4462..a597854e1 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d93f2e273..fafd439f7 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,7 +12,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.adoc index d41eb6a1a..3cf837436 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 @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md index 0834956c8..6c4dd3011 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.html index 3ef21f861..7c0aeb1bb 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md index 44c3c4462..a597854e1 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d93f2e273..fafd439f7 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,7 +12,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/00_9default_calculation_optional.adoc b/tests/results/test_namespace/00_9default_calculation_optional.adoc index 6370e3a70..72e3daf70 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_optional.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md index 602b1b3e6..4cd4070f7 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_optional.html index b4ea3ae54..2ccfe9e1c 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_optional.md b/tests/results/test_namespace/00_9default_calculation_optional.md index e474e0313..98b80f7ae 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_calculation_optional.sh b/tests/results/test_namespace/00_9default_calculation_optional.sh index b35f3d304..25d302db1 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_optional.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 d94ead500..54619b3cc 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.adoc @@ -1,26 +1,20 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "rougail.my_variable" if it is defined +* val2 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md index d0246f38c..236ab3bd3 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_optional_exists.html index 3d41e2fcc..a2bbfa44e 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.html +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.md b/tests/results/test_namespace/00_9default_calculation_optional_exists.md index 442cbe109..422354348 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.md +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 436bc410b..8b7da2eb3 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.sh @@ -1,25 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "rougail.my_variable" if it is โ”‚ 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 84a6e5e61..520afb298 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.adoc +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md index c8e2c2344..1b0b623bd 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_calculation_param_optional.html index 62fb1cd49..1fe6f94f4 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.html +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.md b/tests/results/test_namespace/00_9default_calculation_param_optional.md index cfd9b65e0..113d66f3f 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 23c8d9463..e9e9c83b0 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.sh +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 e65bacc1c..26978cb4c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.adoc +++ b/tests/results/test_namespace/00_9default_information_other_variable.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md index 21d421873..7b92e9129 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_information_other_variable.html index 92798d214..cbfa1cc43 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.html +++ b/tests/results/test_namespace/00_9default_information_other_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.md b/tests/results/test_namespace/00_9default_information_other_variable.md index ae5f29b3a..452cada47 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_information_other_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 4f808ca77..9efdffe5c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace/00_9default_information_other_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 e65bacc1c..26978cb4c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.adoc +++ b/tests/results/test_namespace/00_9default_information_other_variable2.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md index 21d421873..7b92e9129 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_information_other_variable2.html index 92798d214..cbfa1cc43 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.html +++ b/tests/results/test_namespace/00_9default_information_other_variable2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.md b/tests/results/test_namespace/00_9default_information_other_variable2.md index ae5f29b3a..452cada47 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.md +++ b/tests/results/test_namespace/00_9default_information_other_variable2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 4f808ca77..9efdffe5c 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace/00_9default_information_other_variable2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_9default_integer.adoc b/tests/results/test_namespace/00_9default_integer.adoc index 9d90c3a78..f1fa51cf5 100644 --- a/tests/results/test_namespace/00_9default_integer.adoc +++ b/tests/results/test_namespace/00_9default_integer.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace/00_9default_integer.gitlab.md b/tests/results/test_namespace/00_9default_integer.gitlab.md index 3e4ada265..8c1e5f820 100644 --- a/tests/results/test_namespace/00_9default_integer.gitlab.md +++ b/tests/results/test_namespace/00_9default_integer.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_integer.html index 74517147b..5f0c421fc 100644 --- a/tests/results/test_namespace/00_9default_integer.html +++ b/tests/results/test_namespace/00_9default_integer.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_integer.md b/tests/results/test_namespace/00_9default_integer.md index 0c2fbf698..b1e97e84e 100644 --- a/tests/results/test_namespace/00_9default_integer.md +++ b/tests/results/test_namespace/00_9default_integer.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_integer.sh b/tests/results/test_namespace/00_9default_integer.sh index d7602fc75..4c55321b3 100644 --- a/tests/results/test_namespace/00_9default_integer.sh +++ b/tests/results/test_namespace/00_9default_integer.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_9default_number.adoc b/tests/results/test_namespace/00_9default_number.adoc index 9d90c3a78..f1fa51cf5 100644 --- a/tests/results/test_namespace/00_9default_number.adoc +++ b/tests/results/test_namespace/00_9default_number.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace/00_9default_number.gitlab.md b/tests/results/test_namespace/00_9default_number.gitlab.md index 3e4ada265..8c1e5f820 100644 --- a/tests/results/test_namespace/00_9default_number.gitlab.md +++ b/tests/results/test_namespace/00_9default_number.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/00_9default_number.html index 74517147b..5f0c421fc 100644 --- a/tests/results/test_namespace/00_9default_number.html +++ b/tests/results/test_namespace/00_9default_number.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/00_9default_number.md b/tests/results/test_namespace/00_9default_number.md index 0c2fbf698..b1e97e84e 100644 --- a/tests/results/test_namespace/00_9default_number.md +++ b/tests/results/test_namespace/00_9default_number.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9default_number.sh b/tests/results/test_namespace/00_9default_number.sh index d7602fc75..4c55321b3 100644 --- a/tests/results/test_namespace/00_9default_number.sh +++ b/tests/results/test_namespace/00_9default_number.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_9extra.adoc b/tests/results/test_namespace/00_9extra.adoc index ef2ea9d41..1b77d6572 100644 --- a/tests/results/test_namespace/00_9extra.adoc +++ b/tests/results/test_namespace/00_9extra.adoc @@ -1,38 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: rougail |==== -== Variables for "Extra" +== Extra -**extra** +==== +**๐Ÿ›ˆ Informations** +**extra** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: return no |==== diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md index 36b552b3b..e46799ba1 100644 --- a/tests/results/test_namespace/00_9extra.gitlab.md +++ b/tests/results/test_namespace/00_9extra.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: rougail | @@ -13,11 +12,10 @@
Extra ->>> [!note] Informations -**extra**
`standard` +> [!note] Informations +> **extra**\ +> `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.html b/tests/results/test_namespace/00_9extra.html index 1887c2f37..2b4e870ba 100644 --- a/tests/results/test_namespace/00_9extra.html +++ b/tests/results/test_namespace/00_9extra.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -15,14 +13,12 @@
Variable Description
-

Variables for "Extra"

+

Extra

extra standard - - diff --git a/tests/results/test_namespace/00_9extra.md b/tests/results/test_namespace/00_9extra.md index d37078fdf..c21e0a985 100644 --- a/tests/results/test_namespace/00_9extra.md +++ b/tests/results/test_namespace/00_9extra.md @@ -1,22 +1,20 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: rougail | -# Variables for "Extra" - -**extra** - -`standard` - +# Extra +> **๐Ÿ›ˆ Informations** +> +> **extra**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9extra.sh b/tests/results/test_namespace/00_9extra.sh index 36d43a8ae..92c93d4b3 100644 --- a/tests/results/test_namespace/00_9extra.sh +++ b/tests/results/test_namespace/00_9extra.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,21 +12,12 @@ โ”‚  string   standard   mandatory  โ”‚ Default: rougail โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +Extra - -Variables for "Extra" - - - -extra - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_9extra_calculation.adoc b/tests/results/test_namespace/00_9extra_calculation.adoc index c20355443..ff3c7b981 100644 --- a/tests/results/test_namespace/00_9extra_calculation.adoc +++ b/tests/results/test_namespace/00_9extra_calculation.adoc @@ -1,50 +1,38 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value |==== -== Variables for "Extra" +== Extra -**extra** +==== +**๐Ÿ›ˆ Informations** +**extra** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **extra.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: the value of the variable "rougail.variable" -| - -**extra.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **extra.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: copy the value of rougail.variable -| - -**extra.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **extra.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: copy the value of rougail.variable |==== diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md index 265681906..043c981aa 100644 --- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md +++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value | @@ -13,11 +12,10 @@
Extra ->>> [!note] Informations -**extra**
`standard` +> [!note] Informations +> **extra**\ +> `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 "[`A variable`](#rougail.variable)" | diff --git a/tests/results/test_namespace/00_9extra_calculation.html b/tests/results/test_namespace/00_9extra_calculation.html index 4f2dde6eb..bd7d22f49 100644 --- a/tests/results/test_namespace/00_9extra_calculation.html +++ b/tests/results/test_namespace/00_9extra_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -15,14 +13,12 @@
Variable Description
-

Variables for "Extra"

+

Extra

extra standard - - diff --git a/tests/results/test_namespace/00_9extra_calculation.md b/tests/results/test_namespace/00_9extra_calculation.md index af0c7290f..63991c319 100644 --- a/tests/results/test_namespace/00_9extra_calculation.md +++ b/tests/results/test_namespace/00_9extra_calculation.md @@ -1,22 +1,20 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: value | -# Variables for "Extra" - -**extra** - -`standard` - +# Extra +> **๐Ÿ›ˆ Informations** +> +> **extra**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9extra_calculation.sh b/tests/results/test_namespace/00_9extra_calculation.sh index 6e515ff6c..2791b2a18 100644 --- a/tests/results/test_namespace/00_9extra_calculation.sh +++ b/tests/results/test_namespace/00_9extra_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,21 +12,12 @@ โ”‚  string   standard   mandatory  โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +Extra - -Variables for "Extra" - - - -extra - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/00_9extra_ouside.adoc b/tests/results/test_namespace/00_9extra_ouside.adoc index 731849bf4..d67e5a952 100644 --- a/tests/results/test_namespace/00_9extra_ouside.adoc +++ b/tests/results/test_namespace/00_9extra_ouside.adoc @@ -1,38 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "extra.variable" |==== -== Variables for "Extra" +== Extra -**extra** +==== +**๐Ÿ›ˆ Informations** +**extra** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value in extra |==== diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md index cd72d15a6..f86d53c9d 100644 --- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md +++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[`A variable`](#extra.variable)" | @@ -13,11 +12,10 @@
Extra ->>> [!note] Informations -**extra**
`standard` +> [!note] Informations +> **extra**\ +> `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.html b/tests/results/test_namespace/00_9extra_ouside.html index 0ee334711..bcd256a72 100644 --- a/tests/results/test_namespace/00_9extra_ouside.html +++ b/tests/results/test_namespace/00_9extra_ouside.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -15,14 +13,12 @@
Variable Description
-

Variables for "Extra"

+

Extra

extra standard - - diff --git a/tests/results/test_namespace/00_9extra_ouside.md b/tests/results/test_namespace/00_9extra_ouside.md index 81051589a..49fc46e3d 100644 --- a/tests/results/test_namespace/00_9extra_ouside.md +++ b/tests/results/test_namespace/00_9extra_ouside.md @@ -1,22 +1,20 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "extra.variable" | -# Variables for "Extra" - -**extra** - -`standard` - +# Extra +> **๐Ÿ›ˆ Informations** +> +> **extra**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/00_9extra_ouside.sh b/tests/results/test_namespace/00_9extra_ouside.sh index a3ddd31aa..c910744bb 100644 --- a/tests/results/test_namespace/00_9extra_ouside.sh +++ b/tests/results/test_namespace/00_9extra_ouside.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -22,21 +13,12 @@ โ”‚ โ”‚ "extra.variable" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +Extra - -Variables for "Extra" - - - -extra - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/01_6boolean_multi.adoc b/tests/results/test_namespace/01_6boolean_multi.adoc index fe803782e..0b8e67f01 100644 --- a/tests/results/test_namespace/01_6boolean_multi.adoc +++ b/tests/results/test_namespace/01_6boolean_multi.adoc @@ -1,75 +1,51 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test_namespace/01_6boolean_multi.gitlab.md b/tests/results/test_namespace/01_6boolean_multi.gitlab.md index 06c5897ba..50c7686d1 100644 --- a/tests/results/test_namespace/01_6boolean_multi.gitlab.md +++ b/tests/results/test_namespace/01_6boolean_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6boolean_multi.html index 3869052a0..b43704326 100644 --- a/tests/results/test_namespace/01_6boolean_multi.html +++ b/tests/results/test_namespace/01_6boolean_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_6boolean_multi.md b/tests/results/test_namespace/01_6boolean_multi.md index 88fdf34b4..467a7fd92 100644 --- a/tests/results/test_namespace/01_6boolean_multi.md +++ b/tests/results/test_namespace/01_6boolean_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6boolean_multi.sh b/tests/results/test_namespace/01_6boolean_multi.sh index 68064cf1c..89ac2d0de 100644 --- a/tests/results/test_namespace/01_6boolean_multi.sh +++ b/tests/results/test_namespace/01_6boolean_multi.sh @@ -1,52 +1,43 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6custom_multi.adoc b/tests/results/test_namespace/01_6custom_multi.adoc index ae65b4aea..4452a5eeb 100644 --- a/tests/results/test_namespace/01_6custom_multi.adoc +++ b/tests/results/test_namespace/01_6custom_multi.adoc @@ -1,26 +1,20 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace/01_6custom_multi.gitlab.md b/tests/results/test_namespace/01_6custom_multi.gitlab.md index d3f1cdb1a..264c89669 100644 --- a/tests/results/test_namespace/01_6custom_multi.gitlab.md +++ b/tests/results/test_namespace/01_6custom_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6custom_multi.html index bf815e96c..b91e89761 100644 --- a/tests/results/test_namespace/01_6custom_multi.html +++ b/tests/results/test_namespace/01_6custom_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/01_6custom_multi.md b/tests/results/test_namespace/01_6custom_multi.md index 878e2271c..a51a78e4c 100644 --- a/tests/results/test_namespace/01_6custom_multi.md +++ b/tests/results/test_namespace/01_6custom_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6custom_multi.sh b/tests/results/test_namespace/01_6custom_multi.sh index bcf6eba86..619e0e437 100644 --- a/tests/results/test_namespace/01_6custom_multi.sh +++ b/tests/results/test_namespace/01_6custom_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,6 +14,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6float_multi.adoc b/tests/results/test_namespace/01_6float_multi.adoc index 4ef437f2c..8b4ff149e 100644 --- a/tests/results/test_namespace/01_6float_multi.adoc +++ b/tests/results/test_namespace/01_6float_multi.adoc @@ -1,75 +1,51 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test_namespace/01_6float_multi.gitlab.md b/tests/results/test_namespace/01_6float_multi.gitlab.md index dfa12d692..069b39f9b 100644 --- a/tests/results/test_namespace/01_6float_multi.gitlab.md +++ b/tests/results/test_namespace/01_6float_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6float_multi.html index d08d2cd48..f4cb0b66e 100644 --- a/tests/results/test_namespace/01_6float_multi.html +++ b/tests/results/test_namespace/01_6float_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_6float_multi.md b/tests/results/test_namespace/01_6float_multi.md index 435e5798b..df588453d 100644 --- a/tests/results/test_namespace/01_6float_multi.md +++ b/tests/results/test_namespace/01_6float_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                      | Description                                                                                                                   | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6float_multi.sh b/tests/results/test_namespace/01_6float_multi.sh index bbea7ffea..e73a0847e 100644 --- a/tests/results/test_namespace/01_6float_multi.sh +++ b/tests/results/test_namespace/01_6float_multi.sh @@ -1,52 +1,43 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6integer_multi.adoc b/tests/results/test_namespace/01_6integer_multi.adoc index 6b8b9fc6e..b3f2e4fce 100644 --- a/tests/results/test_namespace/01_6integer_multi.adoc +++ b/tests/results/test_namespace/01_6integer_multi.adoc @@ -1,75 +1,51 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test_namespace/01_6integer_multi.gitlab.md b/tests/results/test_namespace/01_6integer_multi.gitlab.md index 4761ccb1f..d7bcecd13 100644 --- a/tests/results/test_namespace/01_6integer_multi.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6integer_multi.html index 3f525d187..70054a665 100644 --- a/tests/results/test_namespace/01_6integer_multi.html +++ b/tests/results/test_namespace/01_6integer_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_6integer_multi.md b/tests/results/test_namespace/01_6integer_multi.md index 2ce7be597..5c8f3fd74 100644 --- a/tests/results/test_namespace/01_6integer_multi.md +++ b/tests/results/test_namespace/01_6integer_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6integer_multi.sh b/tests/results/test_namespace/01_6integer_multi.sh index 05baddc09..e8b360ba0 100644 --- a/tests/results/test_namespace/01_6integer_multi.sh +++ b/tests/results/test_namespace/01_6integer_multi.sh @@ -1,52 +1,43 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.adoc b/tests/results/test_namespace/01_6integer_multi_mandatory.adoc index 181b5f5c9..871614199 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md index d8aecc55f..bebbca87b 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6integer_multi_mandatory.html index 6ed1ba73d..d3a589e86 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.html +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.md b/tests/results/test_namespace/01_6integer_multi_mandatory.md index 930fb2913..8759eedc0 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.md +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                     | Description                                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.sh b/tests/results/test_namespace/01_6integer_multi_mandatory.sh index c285ac363..404ef69dc 100644 --- a/tests/results/test_namespace/01_6integer_multi_mandatory.sh +++ b/tests/results/test_namespace/01_6integer_multi_mandatory.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/01_6string_empty.adoc b/tests/results/test_namespace/01_6string_empty.adoc index 1d0925068..984949601 100644 --- a/tests/results/test_namespace/01_6string_empty.adoc +++ b/tests/results/test_namespace/01_6string_empty.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**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 second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test_namespace/01_6string_empty.gitlab.md b/tests/results/test_namespace/01_6string_empty.gitlab.md index a6e7f6be2..3f233a871 100644 --- a/tests/results/test_namespace/01_6string_empty.gitlab.md +++ b/tests/results/test_namespace/01_6string_empty.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6string_empty.html index 036d19c5a..88b8c684c 100644 --- a/tests/results/test_namespace/01_6string_empty.html +++ b/tests/results/test_namespace/01_6string_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_6string_empty.md b/tests/results/test_namespace/01_6string_empty.md index 8730ff9c1..0ad35387d 100644 --- a/tests/results/test_namespace/01_6string_empty.md +++ b/tests/results/test_namespace/01_6string_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_empty.sh b/tests/results/test_namespace/01_6string_empty.sh index 904367b5e..c2cf5ac2e 100644 --- a/tests/results/test_namespace/01_6string_empty.sh +++ b/tests/results/test_namespace/01_6string_empty.sh @@ -1,25 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6string_multi.adoc b/tests/results/test_namespace/01_6string_multi.adoc index 005c7279e..4715b6082 100644 --- a/tests/results/test_namespace/01_6string_multi.adoc +++ b/tests/results/test_namespace/01_6string_multi.adoc @@ -1,68 +1,44 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace/01_6string_multi.gitlab.md b/tests/results/test_namespace/01_6string_multi.gitlab.md index 295e67826..5d414864e 100644 --- a/tests/results/test_namespace/01_6string_multi.gitlab.md +++ b/tests/results/test_namespace/01_6string_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_6string_multi.html index e0ccf1392..5f2089fcd 100644 --- a/tests/results/test_namespace/01_6string_multi.html +++ b/tests/results/test_namespace/01_6string_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/01_6string_multi.md b/tests/results/test_namespace/01_6string_multi.md index 42cc71121..bb94e4336 100644 --- a/tests/results/test_namespace/01_6string_multi.md +++ b/tests/results/test_namespace/01_6string_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_multi.sh b/tests/results/test_namespace/01_6string_multi.sh index 3a85f9eb1..1f556cbdb 100644 --- a/tests/results/test_namespace/01_6string_multi.sh +++ b/tests/results/test_namespace/01_6string_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -31,22 +22,22 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_6string_multi_length.adoc b/tests/results/test_namespace/01_6string_multi_length.adoc index f72b823cc..b7a21d562 100644 --- a/tests/results/test_namespace/01_6string_multi_length.adoc +++ b/tests/results/test_namespace/01_6string_multi_length.adoc @@ -1,30 +1,24 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**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. + +| **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. + +| **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 diff --git a/tests/results/test_namespace/01_6string_multi_length.gitlab.md b/tests/results/test_namespace/01_6string_multi_length.gitlab.md index a4f291102..ea285f054 100644 --- a/tests/results/test_namespace/01_6string_multi_length.gitlab.md +++ b/tests/results/test_namespace/01_6string_multi_length.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!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 | diff --git a/tests/results/test_namespace/01_6string_multi_length.html b/tests/results/test_namespace/01_6string_multi_length.html index 8a08dc1d6..d0105accd 100644 --- a/tests/results/test_namespace/01_6string_multi_length.html +++ b/tests/results/test_namespace/01_6string_multi_length.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_6string_multi_length.md b/tests/results/test_namespace/01_6string_multi_length.md index 6e942ce52..3f54b3d6d 100644 --- a/tests/results/test_namespace/01_6string_multi_length.md +++ b/tests/results/test_namespace/01_6string_multi_length.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_6string_multi_length.sh b/tests/results/test_namespace/01_6string_multi_length.sh index 920108549..ede3458d9 100644 --- a/tests/results/test_namespace/01_6string_multi_length.sh +++ b/tests/results/test_namespace/01_6string_multi_length.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,16 +11,16 @@ โ”‚ rougail.var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข 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 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข 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 48c93efed..45d869802 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.adoc +++ b/tests/results/test_namespace/01_7value_multi_doublequote.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md index efbfed979..b56336951 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_7value_multi_doublequote.html index 04b193e45..b901f8ed2 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.html +++ b/tests/results/test_namespace/01_7value_multi_doublequote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.md b/tests/results/test_namespace/01_7value_multi_doublequote.md index 53f535211..66238aa3d 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.sh b/tests/results/test_namespace/01_7value_multi_doublequote.sh index c00263319..5a37423d5 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.sh +++ b/tests/results/test_namespace/01_7value_multi_doublequote.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.adoc b/tests/results/test_namespace/01_7value_multi_doublequote2.adoc index bbd17b076..407af88b4 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md index 6086f8c7d..269029eef 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_7value_multi_doublequote2.html index caabf1382..8f4a711b0 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.html +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.md b/tests/results/test_namespace/01_7value_multi_doublequote2.md index 3d91aecf1..714a5288b 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.sh b/tests/results/test_namespace/01_7value_multi_doublequote2.sh index 1b30566ad..1024ef86c 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.sh +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_7value_multi_quote.adoc b/tests/results/test_namespace/01_7value_multi_quote.adoc index 3418c7ef7..16c186569 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.adoc +++ b/tests/results/test_namespace/01_7value_multi_quote.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md index 6d26f59d2..bb30608c3 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md +++ b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_7value_multi_quote.html index 8bec28de4..229e78b0b 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.html +++ b/tests/results/test_namespace/01_7value_multi_quote.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_7value_multi_quote.md b/tests/results/test_namespace/01_7value_multi_quote.md index a522981d2..35490da38 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.md +++ b/tests/results/test_namespace/01_7value_multi_quote.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_7value_multi_quote.sh b/tests/results/test_namespace/01_7value_multi_quote.sh index 9a71de2d4..17be04d96 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.sh +++ b/tests/results/test_namespace/01_7value_multi_quote.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/01_8calculation_information_multi.adoc b/tests/results/test_namespace/01_8calculation_information_multi.adoc index 3662b6b7d..b70728aae 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.adoc +++ b/tests/results/test_namespace/01_8calculation_information_multi.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md index ca49c8963..f670a5344 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_8calculation_information_multi.html index fe0a2c85b..0d32e2428 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.html +++ b/tests/results/test_namespace/01_8calculation_information_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_8calculation_information_multi.md b/tests/results/test_namespace/01_8calculation_information_multi.md index 4fa7972c4..50e54eecd 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_8calculation_information_multi.sh b/tests/results/test_namespace/01_8calculation_information_multi.sh index 6e889d93e..071e089c9 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.sh +++ b/tests/results/test_namespace/01_8calculation_information_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 cb165f05b..77450423a 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.adoc +++ b/tests/results/test_namespace/01_9choice_variable_multi.adoc @@ -1,29 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "rougail.variable1" |==== diff --git a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md index c02433fa4..9abb9d3db 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_9choice_variable_multi.html index f68b5ecaa..b3372524f 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.html +++ b/tests/results/test_namespace/01_9choice_variable_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.md b/tests/results/test_namespace/01_9choice_variable_multi.md index 84acaf276..db0332539 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_9choice_variable_multi.sh b/tests/results/test_namespace/01_9choice_variable_multi.sh index 52375e793..6ceb724df 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace/01_9choice_variable_multi.sh @@ -1,27 +1,18 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace/01_9choice_variable_optional.adoc b/tests/results/test_namespace/01_9choice_variable_optional.adoc index 12357ee11..112595b41 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.adoc +++ b/tests/results/test_namespace/01_9choice_variable_optional.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md index e7f6df679..10f90beb6 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/01_9choice_variable_optional.html index 623c660b6..8f3284d0f 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.html +++ b/tests/results/test_namespace/01_9choice_variable_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/01_9choice_variable_optional.md b/tests/results/test_namespace/01_9choice_variable_optional.md index 834e123fe..6434fdb20 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.md +++ b/tests/results/test_namespace/01_9choice_variable_optional.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/01_9choice_variable_optional.sh b/tests/results/test_namespace/01_9choice_variable_optional.sh index 0365aca90..8ccd37a96 100644 --- a/tests/results/test_namespace/01_9choice_variable_optional.sh +++ b/tests/results/test_namespace/01_9choice_variable_optional.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/02_0tags.adoc b/tests/results/test_namespace/02_0tags.adoc index 94a99ffd1..67dc3a5bc 100644 --- a/tests/results/test_namespace/02_0tags.adoc +++ b/tests/results/test_namespace/02_0tags.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test_namespace/02_0tags.gitlab.md b/tests/results/test_namespace/02_0tags.gitlab.md index d3fe0c84d..8e7be5b62 100644 --- a/tests/results/test_namespace/02_0tags.gitlab.md +++ b/tests/results/test_namespace/02_0tags.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/02_0tags.html index acb0aa419..db8ad00fc 100644 --- a/tests/results/test_namespace/02_0tags.html +++ b/tests/results/test_namespace/02_0tags.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/02_0tags.md b/tests/results/test_namespace/02_0tags.md index 0ea53c514..c42989ac0 100644 --- a/tests/results/test_namespace/02_0tags.md +++ b/tests/results/test_namespace/02_0tags.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/02_0tags.sh b/tests/results/test_namespace/02_0tags.sh index 4d226f29e..c708c59b6 100644 --- a/tests/results/test_namespace/02_0tags.sh +++ b/tests/results/test_namespace/02_0tags.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -22,7 +13,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_0type_param.adoc b/tests/results/test_namespace/04_0type_param.adoc index f5fe2f2b8..a3332ed37 100644 --- a/tests/results/test_namespace/04_0type_param.adoc +++ b/tests/results/test_namespace/04_0type_param.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace/04_0type_param.gitlab.md b/tests/results/test_namespace/04_0type_param.gitlab.md index e13ffda38..c7378db10 100644 --- a/tests/results/test_namespace/04_0type_param.gitlab.md +++ b/tests/results/test_namespace/04_0type_param.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_0type_param.html index 6c568af99..193755d92 100644 --- a/tests/results/test_namespace/04_0type_param.html +++ b/tests/results/test_namespace/04_0type_param.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_0type_param.md b/tests/results/test_namespace/04_0type_param.md index 356955d8d..bd44d4eb3 100644 --- a/tests/results/test_namespace/04_0type_param.md +++ b/tests/results/test_namespace/04_0type_param.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_0type_param.sh b/tests/results/test_namespace/04_0type_param.sh index c90c70712..01aabec36 100644 --- a/tests/results/test_namespace/04_0type_param.sh +++ b/tests/results/test_namespace/04_0type_param.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_0type_param_integer.adoc b/tests/results/test_namespace/04_0type_param_integer.adoc index bc24fe5ce..b9727e880 100644 --- a/tests/results/test_namespace/04_0type_param_integer.adoc +++ b/tests/results/test_namespace/04_0type_param_integer.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace/04_0type_param_integer.gitlab.md b/tests/results/test_namespace/04_0type_param_integer.gitlab.md index 2acfad36d..1e9d122aa 100644 --- a/tests/results/test_namespace/04_0type_param_integer.gitlab.md +++ b/tests/results/test_namespace/04_0type_param_integer.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_0type_param_integer.html index 6de3d5576..86f7a6ad5 100644 --- a/tests/results/test_namespace/04_0type_param_integer.html +++ b/tests/results/test_namespace/04_0type_param_integer.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_0type_param_integer.md b/tests/results/test_namespace/04_0type_param_integer.md index f98a52a58..40f21a825 100644 --- a/tests/results/test_namespace/04_0type_param_integer.md +++ b/tests/results/test_namespace/04_0type_param_integer.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_0type_param_integer.sh b/tests/results/test_namespace/04_0type_param_integer.sh index 6af474fb7..c45b81455 100644 --- a/tests/results/test_namespace/04_0type_param_integer.sh +++ b/tests/results/test_namespace/04_0type_param_integer.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_1auto_save.adoc b/tests/results/test_namespace/04_1auto_save.adoc index 09d0b9fc5..d1e966b65 100644 --- a/tests/results/test_namespace/04_1auto_save.adoc +++ b/tests/results/test_namespace/04_1auto_save.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test_namespace/04_1auto_save.gitlab.md b/tests/results/test_namespace/04_1auto_save.gitlab.md index 45d5aea54..b6ffb38b5 100644 --- a/tests/results/test_namespace/04_1auto_save.gitlab.md +++ b/tests/results/test_namespace/04_1auto_save.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1auto_save.html index fbca8da3c..3ab6e31bc 100644 --- a/tests/results/test_namespace/04_1auto_save.html +++ b/tests/results/test_namespace/04_1auto_save.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1auto_save.md b/tests/results/test_namespace/04_1auto_save.md index dd063e815..22a0d661e 100644 --- a/tests/results/test_namespace/04_1auto_save.md +++ b/tests/results/test_namespace/04_1auto_save.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1auto_save.sh b/tests/results/test_namespace/04_1auto_save.sh index 886942b22..1841ed8d4 100644 --- a/tests/results/test_namespace/04_1auto_save.sh +++ b/tests/results/test_namespace/04_1auto_save.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 e47426fd0..0b354ea46 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md index 40e6ec11d..34f239239 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1auto_save_and_calculated.html index dd86fa9ea..e372a8383 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.html +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.md b/tests/results/test_namespace/04_1auto_save_and_calculated.md index 71e98a16a..c4d659d24 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 af2200876..ebe96bc9c 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.sh +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 f37a8b30e..b8e03226c 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 @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md index 125d6c1ee..75d86ecbe 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.html index dc14d903f..f19f9f99d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md index 835974db3..9dd23cf20 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                           | Description                                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 e683588d5..c03f72eab 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 87667a545..a33bf5367 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md index 64d49919d..0d6603da8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden.html index 1ba637f10..fd2d14512 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.md b/tests/results/test_namespace/04_1default_calculation_hidden.md index 68372b3f4..a35e26a12 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.sh b/tests/results/test_namespace/04_1default_calculation_hidden.sh index fc6f796a4..3caca30f8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 87667a545..a33bf5367 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md index 64d49919d..0d6603da8 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden_2.html index 1ba637f10..fd2d14512 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.md index 68372b3f4..a35e26a12 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 fc6f796a4..3caca30f8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 2fe98c0fb..b76154ef2 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md index 58974a09f..1aaa73b6b 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden_3.html index e16af4255..bdcbc6509 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.md index 10bc9ce4c..fbe0cc4fd 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 74452ac3d..52f5632e8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 5f33f1cf4..e48c25127 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md index c061f46fb..262431a22 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden_4.html index 58bd0ab12..7433de134 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.md index b829bfa7d..9d4cc96b0 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 04f087a6e..38235e42c 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 51907037a..15d8a6c02 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md index fa151c28a..16955149b 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden_5.html index ae5bc311d..a481389c2 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.md index b2badcd63..3a19012f8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 72f3b9390..511308415 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 51907037a..15d8a6c02 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md index fa151c28a..16955149b 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_1default_calculation_hidden_6.html index ae5bc311d..a481389c2 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.html +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.md index b2badcd63..3a19012f8 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 72f3b9390..511308415 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5disabled_calculation.adoc b/tests/results/test_namespace/04_5disabled_calculation.adoc index 2c4852248..0ce6a81d6 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md index 92d91f34f..3dc9c099d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation.html index a5574ca54..91444952b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.html +++ b/tests/results/test_namespace/04_5disabled_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation.md b/tests/results/test_namespace/04_5disabled_calculation.md index d4e7f7a1b..6fb1c66a2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.md +++ b/tests/results/test_namespace/04_5disabled_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation.sh b/tests/results/test_namespace/04_5disabled_calculation.sh index 85904fbc2..63469b48f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.sh +++ b/tests/results/test_namespace/04_5disabled_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 731a5570e..a2002cac5 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md index dde1892c1..edd6dd859 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_boolean.html index 9bcdd6609..4264cedc9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.html +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.md b/tests/results/test_namespace/04_5disabled_calculation_boolean.md index 94f45b6a7..0d96d9e95 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.md +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh index fca2f2bbe..156ec0025 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 fddcc94a0..1b5f3bcb3 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_default.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A first variable. + **Default**: the value of condition + **Disabled**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A second variable. + **Default**: the value of condition + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md index 08e675800..f27d6a781 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_default.html index 72301b42f..d8411635a 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.html +++ b/tests/results/test_namespace/04_5disabled_calculation_default.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.md b/tests/results/test_namespace/04_5disabled_calculation_default.md index 0364b6aa4..f29724802 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.sh b/tests/results/test_namespace/04_5disabled_calculation_default.sh index e6b1386fa..6b6cd814a 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_default.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 1e3f7e5f2..cd5a91e22 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md index 7d86c9a9d..acd8a526f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_multi.html index 6e6092888..a6f43988d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.html +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.md b/tests/results/test_namespace/04_5disabled_calculation_multi.md index 3ad1b655f..ceaf48dd7 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                                 | Description                                                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.sh b/tests/results/test_namespace/04_5disabled_calculation_multi.sh index 9ae475408..b8c766fdb 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7e6182dbc..b60934060 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md index 320b80f0c..1133da430 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_optional.html index 99d16386b..5c892af3e 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.html +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.md b/tests/results/test_namespace/04_5disabled_calculation_optional.md index 0f5865268..b026b6a11 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.sh b/tests/results/test_namespace/04_5disabled_calculation_optional.sh index 4a31df07b..2c1c265bf 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 9efd3d6cf..98063a327 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.adoc @@ -1,36 +1,24 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| Variable | Description +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md index 274b04037..851db1ffa 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html index 7bb5117b5..3894c1edd 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.html +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md index 893ae5da8..9f1656f25 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 a88e6fa08..2283231ee 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 89f26cdca..907f1c85c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md index 95071d2b8..e84d35d89 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable.html index dcb70ee9b..14f6ca5d8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.md b/tests/results/test_namespace/04_5disabled_calculation_variable.md index e396a0c39..5f773e1e0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.sh b/tests/results/test_namespace/04_5disabled_calculation_variable.sh index fddf8ddbc..9bdfec810 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 27f79cad1..d2cbf5053 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md index 83cb43f27..bf5d6b8fe 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable10.html index 7ae2c0d14..4d7146a7c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.md index 97d3cae47..f6f2ed72d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh index 98f7a83dd..864552473 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 27f79cad1..d2cbf5053 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md index 83cb43f27..bf5d6b8fe 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable2.html index 7ae2c0d14..4d7146a7c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.md index 97d3cae47..f6f2ed72d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh index 98f7a83dd..864552473 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 91b8f750d..ab9ee093b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "yes" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md index 2c4933b36..d9f24aed1 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable3.html index 241553e3c..062032dd2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.md index e8fa9718e..8a6f9b869 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh index 00aa6b4e2..329c4488f 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 736effdf4..118d74af4 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" hasn't the value "yes" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md index 602b6ec45..3191456d7 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable4.html index 8d159e423..246631155 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.md index f6689f506..577bcb740 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh index e1aa4a701..96d67a956 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7c5d10172..5ccc5c222 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md index df28ef934..636a4d74d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable5.html index 5f062df84..8a4ab2ea2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.md index 01ae5776c..d27b30643 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh index 8bace849d..0f3de9af9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7c5d10172..5ccc5c222 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md index df28ef934..636a4d74d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable6.html index 5f062df84..8a4ab2ea2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.md index 01ae5776c..d27b30643 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh index 8bace849d..0f3de9af9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 89f26cdca..907f1c85c 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md index 95071d2b8..e84d35d89 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable7.html index dcb70ee9b..14f6ca5d8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.md index e396a0c39..5f773e1e0 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh index fddf8ddbc..9bdfec810 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7c5d10172..5ccc5c222 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md index df28ef934..636a4d74d 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable9.html index 5f062df84..8a4ab2ea2 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.md index 01ae5776c..d27b30643 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh index 8bace849d..0f3de9af9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 d7e9fdbc2..6324e5237 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md index 411f5fc12..0b17cb357 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html index 71342a6d3..2da2c108b 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md index 91c68e744..c3d226049 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                                 | Description                                                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 84162cda0..b4b4074a7 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5hidden_calculation.adoc b/tests/results/test_namespace/04_5hidden_calculation.adoc index 068f22807..04f017b36 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: no + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: no + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md index 9b04c66a2..a2a6d1c35 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5hidden_calculation.html index 1ef534b55..7274eaf27 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.html +++ b/tests/results/test_namespace/04_5hidden_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5hidden_calculation.md b/tests/results/test_namespace/04_5hidden_calculation.md index c08ab4593..b6a326b10 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5hidden_calculation.sh b/tests/results/test_namespace/04_5hidden_calculation.sh index 201a35e18..6796d925a 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.sh +++ b/tests/results/test_namespace/04_5hidden_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5hidden_calculation2.adoc b/tests/results/test_namespace/04_5hidden_calculation2.adoc index 37548e100..8be0a9c49 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation2.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: the value of condition + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: the value of condition + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md index 6f0f7c934..62913e917 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5hidden_calculation2.html index 5eae96280..7e48bff36 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.html +++ b/tests/results/test_namespace/04_5hidden_calculation2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.md b/tests/results/test_namespace/04_5hidden_calculation2.md index 5fa8fd0b0..e3a8ce02e 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5hidden_calculation2.sh b/tests/results/test_namespace/04_5hidden_calculation2.sh index e87a513d4..bd1bcc078 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace/04_5hidden_calculation2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 d58aa0ce9..2d132a6f8 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: returns the condition value + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: returns the condition value + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md index 055a59062..6d97fd4cd 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html index 2387f8ade..df7596e3b 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md index 49211aa84..b9bf50560 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 8f56a889f..0202cc3b2 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5validators.adoc b/tests/results/test_namespace/04_5validators.adoc index 2bfd0bc5a..9b0317d73 100644 --- a/tests/results/test_namespace/04_5validators.adoc +++ b/tests/results/test_namespace/04_5validators.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md index ab94c6161..1598cc261 100644 --- a/tests/results/test_namespace/04_5validators.gitlab.md +++ b/tests/results/test_namespace/04_5validators.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators.html index ba0d852ba..ebb78e255 100644 --- a/tests/results/test_namespace/04_5validators.html +++ b/tests/results/test_namespace/04_5validators.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators.md b/tests/results/test_namespace/04_5validators.md index c67b0e509..f1b6060af 100644 --- a/tests/results/test_namespace/04_5validators.md +++ b/tests/results/test_namespace/04_5validators.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                 | Description                                                                                              | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators.sh b/tests/results/test_namespace/04_5validators.sh index c67608d34..5c8a5bf54 100644 --- a/tests/results/test_namespace/04_5validators.sh +++ b/tests/results/test_namespace/04_5validators.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5validators_differ.adoc b/tests/results/test_namespace/04_5validators_differ.adoc index c7d145c64..6c3751d00 100644 --- a/tests/results/test_namespace/04_5validators_differ.adoc +++ b/tests/results/test_namespace/04_5validators_differ.adoc @@ -1,27 +1,21 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace/04_5validators_differ.gitlab.md b/tests/results/test_namespace/04_5validators_differ.gitlab.md index a8dd4878a..6c636df7e 100644 --- a/tests/results/test_namespace/04_5validators_differ.gitlab.md +++ b/tests/results/test_namespace/04_5validators_differ.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_differ.html index 37d9a4588..1fc9e41f5 100644 --- a/tests/results/test_namespace/04_5validators_differ.html +++ b/tests/results/test_namespace/04_5validators_differ.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_differ.md b/tests/results/test_namespace/04_5validators_differ.md index 05243875f..5d72e5f51 100644 --- a/tests/results/test_namespace/04_5validators_differ.md +++ b/tests/results/test_namespace/04_5validators_differ.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_differ.sh b/tests/results/test_namespace/04_5validators_differ.sh index 9a44aa1ed..5e65841fe 100644 --- a/tests/results/test_namespace/04_5validators_differ.sh +++ b/tests/results/test_namespace/04_5validators_differ.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/04_5validators_multi.adoc b/tests/results/test_namespace/04_5validators_multi.adoc index 2dd12f535..f4303ed4f 100644 --- a/tests/results/test_namespace/04_5validators_multi.adoc +++ b/tests/results/test_namespace/04_5validators_multi.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test_namespace/04_5validators_multi.gitlab.md b/tests/results/test_namespace/04_5validators_multi.gitlab.md index 712976bcd..de068169c 100644 --- a/tests/results/test_namespace/04_5validators_multi.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_multi.html index d935c6a8a..fb290c623 100644 --- a/tests/results/test_namespace/04_5validators_multi.html +++ b/tests/results/test_namespace/04_5validators_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi.md b/tests/results/test_namespace/04_5validators_multi.md index 759f57761..a718fa44f 100644 --- a/tests/results/test_namespace/04_5validators_multi.md +++ b/tests/results/test_namespace/04_5validators_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi.sh b/tests/results/test_namespace/04_5validators_multi.sh index 9c3b48af3..10843f47a 100644 --- a/tests/results/test_namespace/04_5validators_multi.sh +++ b/tests/results/test_namespace/04_5validators_multi.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,7 +12,7 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_5validators_multi2.adoc b/tests/results/test_namespace/04_5validators_multi2.adoc index b80a4232f..f144457bc 100644 --- a/tests/results/test_namespace/04_5validators_multi2.adoc +++ b/tests/results/test_namespace/04_5validators_multi2.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test_namespace/04_5validators_multi2.gitlab.md b/tests/results/test_namespace/04_5validators_multi2.gitlab.md index ff3971af0..39d0b6fd7 100644 --- a/tests/results/test_namespace/04_5validators_multi2.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_multi2.html index 92754a23c..aa7666c52 100644 --- a/tests/results/test_namespace/04_5validators_multi2.html +++ b/tests/results/test_namespace/04_5validators_multi2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi2.md b/tests/results/test_namespace/04_5validators_multi2.md index 3cea199de..ab6918eb9 100644 --- a/tests/results/test_namespace/04_5validators_multi2.md +++ b/tests/results/test_namespace/04_5validators_multi2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi2.sh b/tests/results/test_namespace/04_5validators_multi2.sh index fd6bb749a..158f355a9 100644 --- a/tests/results/test_namespace/04_5validators_multi2.sh +++ b/tests/results/test_namespace/04_5validators_multi2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,10 +12,10 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_5validators_multi3.adoc b/tests/results/test_namespace/04_5validators_multi3.adoc index 62cccf29a..45b6e9301 100644 --- a/tests/results/test_namespace/04_5validators_multi3.adoc +++ b/tests/results/test_namespace/04_5validators_multi3.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test_namespace/04_5validators_multi3.gitlab.md b/tests/results/test_namespace/04_5validators_multi3.gitlab.md index 0bb2f0fe4..434940d2e 100644 --- a/tests/results/test_namespace/04_5validators_multi3.gitlab.md +++ b/tests/results/test_namespace/04_5validators_multi3.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_multi3.html index 46f635c56..261168b19 100644 --- a/tests/results/test_namespace/04_5validators_multi3.html +++ b/tests/results/test_namespace/04_5validators_multi3.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_multi3.md b/tests/results/test_namespace/04_5validators_multi3.md index 9fa908b95..cb1a40e11 100644 --- a/tests/results/test_namespace/04_5validators_multi3.md +++ b/tests/results/test_namespace/04_5validators_multi3.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_multi3.sh b/tests/results/test_namespace/04_5validators_multi3.sh index 3815215a7..1f05b1fd5 100644 --- a/tests/results/test_namespace/04_5validators_multi3.sh +++ b/tests/results/test_namespace/04_5validators_multi3.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,9 +12,9 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/04_5validators_warnings.adoc b/tests/results/test_namespace/04_5validators_warnings.adoc index 2c971ee65..7c04769bb 100644 --- a/tests/results/test_namespace/04_5validators_warnings.adoc +++ b/tests/results/test_namespace/04_5validators_warnings.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test_namespace/04_5validators_warnings.gitlab.md b/tests/results/test_namespace/04_5validators_warnings.gitlab.md index dfa699a92..efaca7975 100644 --- a/tests/results/test_namespace/04_5validators_warnings.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_warnings.html index f304bc392..0cbdd4c94 100644 --- a/tests/results/test_namespace/04_5validators_warnings.html +++ b/tests/results/test_namespace/04_5validators_warnings.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_warnings.md b/tests/results/test_namespace/04_5validators_warnings.md index 01fca1061..01a68742e 100644 --- a/tests/results/test_namespace/04_5validators_warnings.md +++ b/tests/results/test_namespace/04_5validators_warnings.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_warnings.sh b/tests/results/test_namespace/04_5validators_warnings.sh index b2cdea21d..df5982afd 100644 --- a/tests/results/test_namespace/04_5validators_warnings.sh +++ b/tests/results/test_namespace/04_5validators_warnings.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 eed183440..1beabbebc 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.adoc +++ b/tests/results/test_namespace/04_5validators_warnings_all.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md index 69ca4223d..daf0e939b 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/04_5validators_warnings_all.html index 98de1abb8..d691d8ed1 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.html +++ b/tests/results/test_namespace/04_5validators_warnings_all.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/04_5validators_warnings_all.md b/tests/results/test_namespace/04_5validators_warnings_all.md index abf6ec0ea..7e40bcdd1 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.md +++ b/tests/results/test_namespace/04_5validators_warnings_all.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/04_5validators_warnings_all.sh b/tests/results/test_namespace/04_5validators_warnings_all.sh index aca807d09..e048a46f9 100644 --- a/tests/results/test_namespace/04_5validators_warnings_all.sh +++ b/tests/results/test_namespace/04_5validators_warnings_all.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/05_0multi_not_uniq.adoc b/tests/results/test_namespace/05_0multi_not_uniq.adoc index 388b1f788..27d763cb7 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.adoc +++ b/tests/results/test_namespace/05_0multi_not_uniq.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md index 70c68b843..6cfecd1d4 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/05_0multi_not_uniq.html index 2dcb89044..f8993b0b6 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.html +++ b/tests/results/test_namespace/05_0multi_not_uniq.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/05_0multi_not_uniq.md b/tests/results/test_namespace/05_0multi_not_uniq.md index 24f4119c2..b351673fc 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/05_0multi_not_uniq.sh b/tests/results/test_namespace/05_0multi_not_uniq.sh index b5622f88f..71644726a 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.sh +++ b/tests/results/test_namespace/05_0multi_not_uniq.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/05_0multi_uniq.adoc b/tests/results/test_namespace/05_0multi_uniq.adoc index f46f57cb9..54d4d4357 100644 --- a/tests/results/test_namespace/05_0multi_uniq.adoc +++ b/tests/results/test_namespace/05_0multi_uniq.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace/05_0multi_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_uniq.gitlab.md index 0cadcee94..8e890fe3d 100644 --- a/tests/results/test_namespace/05_0multi_uniq.gitlab.md +++ b/tests/results/test_namespace/05_0multi_uniq.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/05_0multi_uniq.html index 00264900d..da199c775 100644 --- a/tests/results/test_namespace/05_0multi_uniq.html +++ b/tests/results/test_namespace/05_0multi_uniq.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/05_0multi_uniq.md b/tests/results/test_namespace/05_0multi_uniq.md index b45685ab5..773550ea4 100644 --- a/tests/results/test_namespace/05_0multi_uniq.md +++ b/tests/results/test_namespace/05_0multi_uniq.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/05_0multi_uniq.sh b/tests/results/test_namespace/05_0multi_uniq.sh index cf0427d02..325770cd9 100644 --- a/tests/results/test_namespace/05_0multi_uniq.sh +++ b/tests/results/test_namespace/05_0multi_uniq.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/12_1auto_save_expert.adoc b/tests/results/test_namespace/12_1auto_save_expert.adoc index 39d1979a8..d71a1ac81 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.adoc +++ b/tests/results/test_namespace/12_1auto_save_expert.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `advanced` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md index 4c5395ac2..3561210d0 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md +++ b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`advanced` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/12_1auto_save_expert.html index fc55dc0c5..281aba7ce 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.html +++ b/tests/results/test_namespace/12_1auto_save_expert.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail advanced - -
Variable Description
diff --git a/tests/results/test_namespace/12_1auto_save_expert.md b/tests/results/test_namespace/12_1auto_save_expert.md index 025ec2e12..fa8c95845 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.md +++ b/tests/results/test_namespace/12_1auto_save_expert.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`advanced` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `advanced` | Variable                                                                                                                   | Description                                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/12_1auto_save_expert.sh b/tests/results/test_namespace/12_1auto_save_expert.sh index b9e07d13f..7885be474 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.sh +++ b/tests/results/test_namespace/12_1auto_save_expert.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - advanced  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  advanced  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_0redefine_description.adoc b/tests/results/test_namespace/16_0redefine_description.adoc index c738f9208..d8b38b0fd 100644 --- a/tests/results/test_namespace/16_0redefine_description.adoc +++ b/tests/results/test_namespace/16_0redefine_description.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test_namespace/16_0redefine_description.gitlab.md b/tests/results/test_namespace/16_0redefine_description.gitlab.md index 305e00774..7e9f25d16 100644 --- a/tests/results/test_namespace/16_0redefine_description.gitlab.md +++ b/tests/results/test_namespace/16_0redefine_description.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_0redefine_description.html index bc0afd8ec..c4f355069 100644 --- a/tests/results/test_namespace/16_0redefine_description.html +++ b/tests/results/test_namespace/16_0redefine_description.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16_0redefine_description.md b/tests/results/test_namespace/16_0redefine_description.md index b794549af..b735ea4c6 100644 --- a/tests/results/test_namespace/16_0redefine_description.md +++ b/tests/results/test_namespace/16_0redefine_description.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_0redefine_description.sh b/tests/results/test_namespace/16_0redefine_description.sh index 3679b2ae9..37018bcfd 100644 --- a/tests/results/test_namespace/16_0redefine_description.sh +++ b/tests/results/test_namespace/16_0redefine_description.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 8d9219182..546185013 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.adoc +++ b/tests/results/test_namespace/16_2family_redefine_calculation.adoc @@ -1,28 +1,24 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`basic` `__disabled__` - - +**rougail.family** + +`basic` `__disabled__` + **Disabled**: depends on a calculation - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md index 62ac36ab1..3ca5f2cbe 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
family ->>> [!note] Informations -
**rougail.family**
`basic` *`disabled`*
**Disabled**: depends on a calculation ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` *`disabled`*\ +> **Disabled**: depends on a calculation + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.html b/tests/results/test_namespace/16_2family_redefine_calculation.html index 35a55442f..8a6d24d7b 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.html +++ b/tests/results/test_namespace/16_2family_redefine_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 315f9cc8e..b8ae09cda 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`disabled`*
**Disabled**: depends on a calculation | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` *`disabled`*\ +> **Disabled**: depends on a calculation | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.sh b/tests/results/test_namespace/16_2family_redefine_calculation.sh index fdbea4593..f41973041 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.sh +++ b/tests/results/test_namespace/16_2family_redefine_calculation.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  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_3family_empty_at_ends.adoc b/tests/results/test_namespace/16_3family_empty_at_ends.adoc index 0d54cafe1..0f1deff33 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.adoc +++ b/tests/results/test_namespace/16_3family_empty_at_ends.adoc @@ -1,25 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md index 22836b728..a52eaaaa6 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,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | 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 8079cb4f1..09a49382d 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.html +++ b/tests/results/test_namespace/16_3family_empty_at_ends.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 aec625d3e..5b136d262 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.md +++ b/tests/results/test_namespace/16_3family_empty_at_ends.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## family - - -| Informations | -|:------------| -| **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 b337d0bdb..31f57da01 100644 --- a/tests/results/test_namespace/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace/16_3family_empty_at_ends.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  family - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 c384eba4e..c42c72fe5 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.adoc +++ b/tests/results/test_namespace/16_5exists_nonexists.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md index f6ae7a2d4..9301ee3a3 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md +++ b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5exists_nonexists.html index 289f112f7..2f657970c 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.html +++ b/tests/results/test_namespace/16_5exists_nonexists.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/16_5exists_nonexists.md b/tests/results/test_namespace/16_5exists_nonexists.md index 8da158329..74b705a66 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.md +++ b/tests/results/test_namespace/16_5exists_nonexists.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5exists_nonexists.sh b/tests/results/test_namespace/16_5exists_nonexists.sh index 518404a07..dcb9c5eb0 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.sh +++ b/tests/results/test_namespace/16_5exists_nonexists.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_5redefine_calculation.adoc b/tests/results/test_namespace/16_5redefine_calculation.adoc index d0c6e7e16..9309097d2 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_calculation.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md index cfe90ed79..f92505953 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_calculation.html index e6b101c8d..82768c682 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.html +++ b/tests/results/test_namespace/16_5redefine_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_calculation.md b/tests/results/test_namespace/16_5redefine_calculation.md index eb2bd7baf..4d3038b88 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.md +++ b/tests/results/test_namespace/16_5redefine_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_calculation.sh b/tests/results/test_namespace/16_5redefine_calculation.sh index 3f0fd3893..5e035037d 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_5redefine_choice.adoc b/tests/results/test_namespace/16_5redefine_choice.adoc index e124fc86b..771e73d07 100644 --- a/tests/results/test_namespace/16_5redefine_choice.adoc +++ b/tests/results/test_namespace/16_5redefine_choice.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace/16_5redefine_choice.gitlab.md b/tests/results/test_namespace/16_5redefine_choice.gitlab.md index 8d1bf4839..ef62f04a7 100644 --- a/tests/results/test_namespace/16_5redefine_choice.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_choice.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_choice.html index f7c6b6ae9..f7abbe7e3 100644 --- a/tests/results/test_namespace/16_5redefine_choice.html +++ b/tests/results/test_namespace/16_5redefine_choice.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_choice.md b/tests/results/test_namespace/16_5redefine_choice.md index de2623840..c9602aff1 100644 --- a/tests/results/test_namespace/16_5redefine_choice.md +++ b/tests/results/test_namespace/16_5redefine_choice.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_choice.sh b/tests/results/test_namespace/16_5redefine_choice.sh index 79215d4bc..e66dc8c15 100644 --- a/tests/results/test_namespace/16_5redefine_choice.sh +++ b/tests/results/test_namespace/16_5redefine_choice.sh @@ -1,25 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/16_5redefine_default.adoc b/tests/results/test_namespace/16_5redefine_default.adoc index 53cbf27c8..b34a90b44 100644 --- a/tests/results/test_namespace/16_5redefine_default.adoc +++ b/tests/results/test_namespace/16_5redefine_default.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace/16_5redefine_default.gitlab.md b/tests/results/test_namespace/16_5redefine_default.gitlab.md index e13e85c18..dbe748931 100644 --- a/tests/results/test_namespace/16_5redefine_default.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_default.html index bcdbb3f1f..46944a4e5 100644 --- a/tests/results/test_namespace/16_5redefine_default.html +++ b/tests/results/test_namespace/16_5redefine_default.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_default.md b/tests/results/test_namespace/16_5redefine_default.md index fe2cfc1a0..4213674f2 100644 --- a/tests/results/test_namespace/16_5redefine_default.md +++ b/tests/results/test_namespace/16_5redefine_default.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_default.sh b/tests/results/test_namespace/16_5redefine_default.sh index f21df6c12..df8ad375a 100644 --- a/tests/results/test_namespace/16_5redefine_default.sh +++ b/tests/results/test_namespace/16_5redefine_default.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7c5d10172..5ccc5c222 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_default_calculation.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md index df28ef934..636a4d74d 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_default_calculation.html index 5f062df84..8a4ab2ea2 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.html +++ b/tests/results/test_namespace/16_5redefine_default_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.md b/tests/results/test_namespace/16_5redefine_default_calculation.md index 01ae5776c..d27b30643 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.sh b/tests/results/test_namespace/16_5redefine_default_calculation.sh index 8bace849d..0f3de9af9 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_default_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_5redefine_family.adoc b/tests/results/test_namespace/16_5redefine_family.adoc index 6566a7fbc..b8d838110 100644 --- a/tests/results/test_namespace/16_5redefine_family.adoc +++ b/tests/results/test_namespace/16_5redefine_family.adoc @@ -1,25 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === New description +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md index d1d4d5eaa..a9d72cbf2 100644 --- a/tests/results/test_namespace/16_5redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_family.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
New description ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.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_family.html b/tests/results/test_namespace/16_5redefine_family.html index 64abde4be..9b0ffb0d9 100644 --- a/tests/results/test_namespace/16_5redefine_family.html +++ b/tests/results/test_namespace/16_5redefine_family.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 ba2ffead4..f05619c51 100644 --- a/tests/results/test_namespace/16_5redefine_family.md +++ b/tests/results/test_namespace/16_5redefine_family.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## New description - - -| Informations | -|:------------| -| **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 7f876fc73..913bfddb5 100644 --- a/tests/results/test_namespace/16_5redefine_family.sh +++ b/tests/results/test_namespace/16_5redefine_family.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  New description - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 583fc7ee9..791b50a72 100644 --- a/tests/results/test_namespace/16_5redefine_help.adoc +++ b/tests/results/test_namespace/16_5redefine_help.adoc @@ -1,28 +1,25 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -Redefine help family ok. - +**rougail.family** + +Redefine help family ok. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md index f7f038a75..fffdc016a 100644 --- a/tests/results/test_namespace/16_5redefine_help.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_help.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
Redefine help family ok.
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> Redefine help family ok.\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| | **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.
Redefine help ok. | diff --git a/tests/results/test_namespace/16_5redefine_help.html b/tests/results/test_namespace/16_5redefine_help.html index 025d701a2..1e1d66df6 100644 --- a/tests/results/test_namespace/16_5redefine_help.html +++ b/tests/results/test_namespace/16_5redefine_help.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A family

rougail.family diff --git a/tests/results/test_namespace/16_5redefine_help.md b/tests/results/test_namespace/16_5redefine_help.md index c7738c8d3..8f78f7693 100644 --- a/tests/results/test_namespace/16_5redefine_help.md +++ b/tests/results/test_namespace/16_5redefine_help.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
Redefine help family ok.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> Redefine help family ok.\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_help.sh b/tests/results/test_namespace/16_5redefine_help.sh index 020df2e42..20b3657e9 100644 --- a/tests/results/test_namespace/16_5redefine_help.sh +++ b/tests/results/test_namespace/16_5redefine_help.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A family - -rougail.family - -Redefine help family ok. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.family +โ–Œ Redefine help family ok. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_5redefine_multi.adoc b/tests/results/test_namespace/16_5redefine_multi.adoc index f46f57cb9..54d4d4357 100644 --- a/tests/results/test_namespace/16_5redefine_multi.adoc +++ b/tests/results/test_namespace/16_5redefine_multi.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace/16_5redefine_multi.gitlab.md b/tests/results/test_namespace/16_5redefine_multi.gitlab.md index 0cadcee94..8e890fe3d 100644 --- a/tests/results/test_namespace/16_5redefine_multi.gitlab.md +++ b/tests/results/test_namespace/16_5redefine_multi.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_multi.html index 00264900d..da199c775 100644 --- a/tests/results/test_namespace/16_5redefine_multi.html +++ b/tests/results/test_namespace/16_5redefine_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_multi.md b/tests/results/test_namespace/16_5redefine_multi.md index b45685ab5..773550ea4 100644 --- a/tests/results/test_namespace/16_5redefine_multi.md +++ b/tests/results/test_namespace/16_5redefine_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5redefine_multi.sh b/tests/results/test_namespace/16_5redefine_multi.sh index cf0427d02..325770cd9 100644 --- a/tests/results/test_namespace/16_5redefine_multi.sh +++ b/tests/results/test_namespace/16_5redefine_multi.sh @@ -1,24 +1,15 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 2fb045a4c..09024508b 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.adoc @@ -1,24 +1,18 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md index 60891f012..be4452140 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html index 51f42b449..96eb19584 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md index 2fa5a064a..d15725a1a 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d11d06f9d..ec04d3c50 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_5test_redefine.adoc b/tests/results/test_namespace/16_5test_redefine.adoc index edc939595..f34b97d8f 100644 --- a/tests/results/test_namespace/16_5test_redefine.adoc +++ b/tests/results/test_namespace/16_5test_redefine.adoc @@ -1,32 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test_namespace/16_5test_redefine.gitlab.md b/tests/results/test_namespace/16_5test_redefine.gitlab.md index eea4a81a7..74b371f28 100644 --- a/tests/results/test_namespace/16_5test_redefine.gitlab.md +++ b/tests/results/test_namespace/16_5test_redefine.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_5test_redefine.html index aadb1c30b..cd8d5fb41 100644 --- a/tests/results/test_namespace/16_5test_redefine.html +++ b/tests/results/test_namespace/16_5test_redefine.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16_5test_redefine.md b/tests/results/test_namespace/16_5test_redefine.md index fbca30930..1bfab486f 100644 --- a/tests/results/test_namespace/16_5test_redefine.md +++ b/tests/results/test_namespace/16_5test_redefine.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_5test_redefine.sh b/tests/results/test_namespace/16_5test_redefine.sh index 43ab195f3..ffd42790b 100644 --- a/tests/results/test_namespace/16_5test_redefine.sh +++ b/tests/results/test_namespace/16_5test_redefine.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16_6choice_redefine.adoc b/tests/results/test_namespace/16_6choice_redefine.adoc index d34ec0341..75e8ca3cc 100644 --- a/tests/results/test_namespace/16_6choice_redefine.adoc +++ b/tests/results/test_namespace/16_6choice_redefine.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test_namespace/16_6choice_redefine.gitlab.md b/tests/results/test_namespace/16_6choice_redefine.gitlab.md index 1a8794585..50fb2d8a7 100644 --- a/tests/results/test_namespace/16_6choice_redefine.gitlab.md +++ b/tests/results/test_namespace/16_6choice_redefine.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16_6choice_redefine.html index b39dc066c..2cf4318a5 100644 --- a/tests/results/test_namespace/16_6choice_redefine.html +++ b/tests/results/test_namespace/16_6choice_redefine.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/16_6choice_redefine.md b/tests/results/test_namespace/16_6choice_redefine.md index dcc155625..7b1ade8dc 100644 --- a/tests/results/test_namespace/16_6choice_redefine.md +++ b/tests/results/test_namespace/16_6choice_redefine.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16_6choice_redefine.sh b/tests/results/test_namespace/16_6choice_redefine.sh index f9ea0c6e4..a26ac9ab7 100644 --- a/tests/results/test_namespace/16_6choice_redefine.sh +++ b/tests/results/test_namespace/16_6choice_redefine.sh @@ -1,25 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/16_6exists_redefine_family.adoc b/tests/results/test_namespace/16_6exists_redefine_family.adoc index cc53cd0b8..28db8b941 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.adoc +++ b/tests/results/test_namespace/16_6exists_redefine_family.adoc @@ -1,42 +1,38 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === New description +==== +**๐Ÿ›ˆ Informations** -**rougail.family1** - +**rougail.family1** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== === A second family +==== +**๐Ÿ›ˆ Informations** -**rougail.family2** - +**rougail.family2** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md index 74976510d..589a81d73 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
New description ->>> [!note] Informations -
**rougail.family1**
`basic` ->>> +> [!note] Informations +> **rougail.family1**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family1.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | @@ -18,9 +18,10 @@
A second family ->>> [!note] Informations -
**rougail.family2**
`basic` ->>> +> [!note] Informations +> **rougail.family2**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **rougail.family2.variable2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. | diff --git a/tests/results/test_namespace/16_6exists_redefine_family.html b/tests/results/test_namespace/16_6exists_redefine_family.html index 8ab3e42d2..fa6d74a22 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.html +++ b/tests/results/test_namespace/16_6exists_redefine_family.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 c7ac60fab..108359238 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## New description - - -| Informations | -|:------------| -| **rougail.family1**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family1**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +18,10 @@ ## A second family - - -| Informations | -|:------------| -| **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 fbd023761..9894ceedc 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace/16_6exists_redefine_family.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  New description - -rougail.family1 - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.family1 +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -31,15 +19,12 @@ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second family - -rougail.family2 - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.family2 +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/16exists_exists.adoc b/tests/results/test_namespace/16exists_exists.adoc index d89d1caa7..1c9994ab4 100644 --- a/tests/results/test_namespace/16exists_exists.adoc +++ b/tests/results/test_namespace/16exists_exists.adoc @@ -1,18 +1,15 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md index d4a4e7042..4b5d723f7 100644 --- a/tests/results/test_namespace/16exists_exists.gitlab.md +++ b/tests/results/test_namespace/16exists_exists.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/16exists_exists.html index fca424fd3..b66cbd1ac 100644 --- a/tests/results/test_namespace/16exists_exists.html +++ b/tests/results/test_namespace/16exists_exists.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/16exists_exists.md b/tests/results/test_namespace/16exists_exists.md index bb8f5e416..d048311e9 100644 --- a/tests/results/test_namespace/16exists_exists.md +++ b/tests/results/test_namespace/16exists_exists.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/16exists_exists.sh b/tests/results/test_namespace/16exists_exists.sh index 609b208f0..f9b593889 100644 --- a/tests/results/test_namespace/16exists_exists.sh +++ b/tests/results/test_namespace/16exists_exists.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/20_0family_append.adoc b/tests/results/test_namespace/20_0family_append.adoc index a10b2cded..e924cf4c3 100644 --- a/tests/results/test_namespace/20_0family_append.adoc +++ b/tests/results/test_namespace/20_0family_append.adoc @@ -1,30 +1,25 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md index 7c1bf922d..589e7e127 100644 --- a/tests/results/test_namespace/20_0family_append.gitlab.md +++ b/tests/results/test_namespace/20_0family_append.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------| | **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test_namespace/20_0family_append.html b/tests/results/test_namespace/20_0family_append.html index a269036b8..b20df34d0 100644 --- a/tests/results/test_namespace/20_0family_append.html +++ b/tests/results/test_namespace/20_0family_append.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 88e106f18..a788acabe 100644 --- a/tests/results/test_namespace/20_0family_append.md +++ b/tests/results/test_namespace/20_0family_append.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A family - - -| Informations | -|:------------| -| **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 7e9e5413c..3409cb6eb 100644 --- a/tests/results/test_namespace/20_0family_append.sh +++ b/tests/results/test_namespace/20_0family_append.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A family - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 af9ed565a..9c59d9bf7 100644 --- a/tests/results/test_namespace/20_0multi_family.adoc +++ b/tests/results/test_namespace/20_0multi_family.adoc @@ -1,32 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `standard` - +==== ==== A sub family +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md index d727f867e..4c868e457 100644 --- a/tests/results/test_namespace/20_0multi_family.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family.gitlab.md @@ -1,20 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
`standard` ->>> +> [!note] Informations +> **rougail.family**\ +> `standard` +
A sub family ->>> [!note] Informations -
**rougail.family.subfamily**
`standard` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. | diff --git a/tests/results/test_namespace/20_0multi_family.html b/tests/results/test_namespace/20_0multi_family.html index 28c59eb1b..cdc430ca1 100644 --- a/tests/results/test_namespace/20_0multi_family.html +++ b/tests/results/test_namespace/20_0multi_family.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 4475e4c7e..951ac0a75 100644 --- a/tests/results/test_namespace/20_0multi_family.md +++ b/tests/results/test_namespace/20_0multi_family.md @@ -1,26 +1,23 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `standard` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family.sh b/tests/results/test_namespace/20_0multi_family.sh index 9d10d50f0..9c0c826a2 100644 --- a/tests/results/test_namespace/20_0multi_family.sh +++ b/tests/results/test_namespace/20_0multi_family.sh @@ -1,38 +1,23 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  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_basic.adoc b/tests/results/test_namespace/20_0multi_family_basic.adoc index f6709c21e..170e490aa 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.adoc +++ b/tests/results/test_namespace/20_0multi_family_basic.adoc @@ -1,32 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== ==== A sub family +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md index 5a87a17ba..3dfc7f2a4 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md @@ -1,20 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` +
A sub family ->>> [!note] Informations -
**rougail.family.subfamily**
`basic` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/20_0multi_family_basic.html b/tests/results/test_namespace/20_0multi_family_basic.html index cacfd7da1..e57c43562 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.html +++ b/tests/results/test_namespace/20_0multi_family_basic.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 16396ea2b..bd4d37521 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.md +++ b/tests/results/test_namespace/20_0multi_family_basic.md @@ -1,26 +1,23 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_basic.sh b/tests/results/test_namespace/20_0multi_family_basic.sh index e0094894c..1b120f851 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.sh +++ b/tests/results/test_namespace/20_0multi_family_basic.sh @@ -1,38 +1,23 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  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_expert.adoc b/tests/results/test_namespace/20_0multi_family_expert.adoc index 37f1e958f..6c6fb6f53 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.adoc +++ b/tests/results/test_namespace/20_0multi_family_expert.adoc @@ -1,32 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `advanced` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `advanced` - +==== ==== A sub family +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `advanced` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md index 35e0f3cea..c7ea848d6 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md @@ -1,20 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`advanced` +> [!note] Informations +> **rougail**\ +> `advanced` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
`advanced` ->>> +> [!note] Informations +> **rougail.family**\ +> `advanced` +
A sub family ->>> [!note] Informations -
**rougail.family.subfamily**
`advanced` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `advanced` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. | diff --git a/tests/results/test_namespace/20_0multi_family_expert.html b/tests/results/test_namespace/20_0multi_family_expert.html index 7053aa777..098bc06a7 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.html +++ b/tests/results/test_namespace/20_0multi_family_expert.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 5003aeb35..c2b79e789 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.md +++ b/tests/results/test_namespace/20_0multi_family_expert.md @@ -1,26 +1,23 @@ -# Variables for "Rougail" - -**rougail** - -`advanced` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `advanced` ## A family - - -| Informations | -|:------------| -| **rougail.family**
`advanced` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `advanced` ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`advanced` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `advanced` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_expert.sh b/tests/results/test_namespace/20_0multi_family_expert.sh index 4b7724dc3..977c4716f 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.sh +++ b/tests/results/test_namespace/20_0multi_family_expert.sh @@ -1,38 +1,23 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - advanced  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  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_order.adoc b/tests/results/test_namespace/20_0multi_family_order.adoc index 24f6f3c7f..f1bf27cbb 100644 --- a/tests/results/test_namespace/20_0multi_family_order.adoc +++ b/tests/results/test_namespace/20_0multi_family_order.adoc @@ -1,62 +1,52 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. +| Variable | Description +| **rougail.family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. |==== ==== A sub family +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace/20_0multi_family_order.gitlab.md b/tests/results/test_namespace/20_0multi_family_order.gitlab.md index 8fb211594..e6d453497 100644 --- a/tests/results/test_namespace/20_0multi_family_order.gitlab.md +++ b/tests/results/test_namespace/20_0multi_family_order.gitlab.md @@ -1,28 +1,29 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
A family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **rougail.family.variable1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
A sub family ->>> [!note] Informations -
**rougail.family.subfamily**
`basic` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/20_0multi_family_order.html b/tests/results/test_namespace/20_0multi_family_order.html index 2fd647be0..026a2e6e4 100644 --- a/tests/results/test_namespace/20_0multi_family_order.html +++ b/tests/results/test_namespace/20_0multi_family_order.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/20_0multi_family_order.md b/tests/results/test_namespace/20_0multi_family_order.md index 6ed05f00a..063242cf5 100644 --- a/tests/results/test_namespace/20_0multi_family_order.md +++ b/tests/results/test_namespace/20_0multi_family_order.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,10 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +22,10 @@ ### A sub family - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `basic` | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0multi_family_order.sh b/tests/results/test_namespace/20_0multi_family_order.sh index bcd408d3a..98f7478b8 100644 --- a/tests/results/test_namespace/20_0multi_family_order.sh +++ b/tests/results/test_namespace/20_0multi_family_order.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,15 +11,12 @@ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.family +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -36,15 +24,12 @@ โ”‚ rougail.family.variable1 โ”‚ A first variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A sub family - -rougail.family.subfamily - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 26f61529b..e0a2d7436 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.adoc +++ b/tests/results/test_namespace/20_0validators_differ_redefine.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md index b0d06e652..6856dd732 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/20_0validators_differ_redefine.html index 05a6b3e12..ad41afe69 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.html +++ b/tests/results/test_namespace/20_0validators_differ_redefine.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.md b/tests/results/test_namespace/20_0validators_differ_redefine.md index 0f05e5516..fe536250b 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.sh b/tests/results/test_namespace/20_0validators_differ_redefine.sh index e65623271..65dceb530 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.sh +++ b/tests/results/test_namespace/20_0validators_differ_redefine.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 c62606ebc..2608c11cb 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.adoc @@ -1,34 +1,29 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === my_family +==== +**๐Ÿ›ˆ Informations** -**rougail.my_family** - +**rougail.my_family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **rougail.my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**rougail.my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **rougail.my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md index dc442fe99..77ff0ae07 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,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
my_family ->>> [!note] Informations -
**rougail.my_family**
`standard` ->>> +> [!note] Informations +> **rougail.my_family**\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| | **rougail.my_family.dynamic**
[`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/20_2family_looks_like_dynamic.html b/tests/results/test_namespace/20_2family_looks_like_dynamic.html index ca2f311f4..419102c8a 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.html +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 327c4d423..2dbc9d653 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.md +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## my_family - - -| Informations | -|:------------| -| **rougail.my_family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_family**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh index af2a16b17..11e820938 100644 --- a/tests/results/test_namespace/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.sh @@ -1,35 +1,23 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  my_family - -rougail.my_family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_family +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ 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 87618064c..79b1457fe 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.adoc +++ b/tests/results/test_namespace/20_2family_looks_like_variable.adoc @@ -1,25 +1,23 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === my_family +==== +**๐Ÿ›ˆ Informations** -**rougail.my_family** - +**rougail.my_family** + `standard` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **rougail.my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md index c19820912..2364967a5 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,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
my_family ->>> [!note] Informations -
**rougail.my_family**
`standard` ->>> +> [!note] Informations +> **rougail.my_family**\ +> `standard` + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **rougail.my_family.default**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | **Default**: true | 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 af15691fd..6e6d90361 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.html +++ b/tests/results/test_namespace/20_2family_looks_like_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 9b08c0464..003461a68 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.md +++ b/tests/results/test_namespace/20_2family_looks_like_variable.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## my_family - - -| Informations | -|:------------| -| **rougail.my_family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_family**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.sh b/tests/results/test_namespace/20_2family_looks_like_variable.sh index 3b6b3aa5d..a32660bb8 100644 --- a/tests/results/test_namespace/20_2family_looks_like_variable.sh +++ b/tests/results/test_namespace/20_2family_looks_like_variable.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  my_family - -rougail.my_family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 13e885bfd..ab9c0b5ab 100644 --- a/tests/results/test_namespace/20_9default_information_parent.adoc +++ b/tests/results/test_namespace/20_9default_information_parent.adoc @@ -1,31 +1,26 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.family" +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.family" |==== diff --git a/tests/results/test_namespace/20_9default_information_parent.gitlab.md b/tests/results/test_namespace/20_9default_information_parent.gitlab.md index 804ccfc5e..795bcfd25 100644 --- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md +++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------| | **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test_namespace/20_9default_information_parent.html b/tests/results/test_namespace/20_9default_information_parent.html index 039d6f9c1..3611ab810 100644 --- a/tests/results/test_namespace/20_9default_information_parent.html +++ b/tests/results/test_namespace/20_9default_information_parent.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 681fe3ce9..9eea5d743 100644 --- a/tests/results/test_namespace/20_9default_information_parent.md +++ b/tests/results/test_namespace/20_9default_information_parent.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## family - - -| Informations | -|:------------| -| **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 a660a561f..7e805608f 100644 --- a/tests/results/test_namespace/20_9default_information_parent.sh +++ b/tests/results/test_namespace/20_9default_information_parent.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  family - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 1a5d624f3..e5881ca70 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition.adoc @@ -1,39 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no |==== === Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`basic` `__hidden__` - - +**rougail.family** + +`basic` `__hidden__` + **Hidden**: if condition is yes - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md index 030fbea6c..378ed51bb 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md @@ -1,19 +1,20 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test_namespace/24_0family_hidden_condition.html b/tests/results/test_namespace/24_0family_hidden_condition.html index 50327c5f1..b1ba2d6a8 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.html +++ b/tests/results/test_namespace/24_0family_hidden_condition.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 5c7c7f6ef..6959a668f 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,11 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition.sh b/tests/results/test_namespace/24_0family_hidden_condition.sh index ecb7a2089..3952456ec 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,17 +11,13 @@ โ”‚ rougail.condition โ”‚ The variable use has condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ 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_boolean.adoc b/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc index 05240b50b..5a2d3b669 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.adoc @@ -1,39 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A conditional variable. + **Default**: false |==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`standard` `__hidden__` - - +**rougail.family** + +`standard` `__hidden__` + **Hidden**: if not condition - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md index f4de3e722..532b5ec5e 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,19 +1,20 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition ->>> +> [!note] Informations +> **rougail.family**\ +> `standard` *`hidden`*\ +> **Hidden**: if not condition + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. | 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 520ef5b94..448fe44c0 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.html +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 a41bf85db..ce20e8ab8 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,11 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: if not condition | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `standard` *`hidden`*\ +> **Hidden**: if not condition | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh index e2b0cae2b..878501f77 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,17 +11,13 @@ โ”‚ rougail.condition โ”‚ A conditional variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ 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_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.adoc index 5e7c5ac65..93d73c3e2 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 @@ -1,46 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no |==== === Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`basic` `__hidden__` - - +**rougail.family** + +`basic` `__hidden__` + **Hidden**: if condition is yes - +==== ==== subfamily +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md index 0256c6771..346483073 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,24 +1,26 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes +
subfamily ->>> [!note] Informations -
**rougail.family.subfamily**
`basic` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | 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 031bb6d32..2d43c28b7 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md index 4f263a1b0..9c5b840cf 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,18 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes ### subfamily - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh index 606b1c9bd..277143028 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,27 +11,20 @@ โ”‚ rougail.condition โ”‚ The variable use has condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ 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_variable_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.adoc index 07aac7a84..93356e367 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 @@ -1,46 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true |==== === Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`standard` `__hidden__` - - +**rougail.family** + +`standard` `__hidden__` + **Hidden**: when the variable "rougail.condition" has the value "true" - +==== ==== A subfamily +==== +**๐Ÿ›ˆ Informations** -**rougail.family.subfamily** - +**rougail.family.subfamily** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md index 50a0b2de9..19880aadb 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,24 +1,26 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "[`The variable use has condition`](#rougail.condition)" has the value "true" ->>> +> [!note] Informations +> **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` ->>> +> [!note] Informations +> **rougail.family.subfamily**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.subfamily.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. | 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 f7dfa8011..d2cb8dff6 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md index 533a3ee40..8661144f0 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,18 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: when the variable "rougail.condition" has the value "true" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `standard` *`hidden`*\ +> **Hidden**: when the variable "rougail.condition" has the value "true" ### A subfamily - - -| Informations | -|:------------| -| **rougail.family.subfamily**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.subfamily**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh index 1d8bcf53f..871cd9917 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,27 +11,20 @@ โ”‚ rougail.condition โ”‚ The variable use has condition. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ 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_with_variable.adoc b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.adoc index eaa027cff..4fa851dfd 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 @@ -1,46 +1,36 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A first conditional variable. + +| **rougail.condition1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A first conditional variable. + **Default**: false -| - -**rougail.condition2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second conditional variable. + +| **rougail.condition2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second conditional variable. + **Default**: false |==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`standard` `__hidden__` - - +**rougail.family** + +`standard` `__hidden__` + **Hidden**: if condition1 is false - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A variable. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A variable. + **Hidden**: if condition2 is false |==== diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md index fc8e60f47..1ccd2870a 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.condition1**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first conditional variable.
**Default**: false | @@ -12,9 +11,11 @@
A family ->>> [!note] Informations -
**rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false ->>> +> [!note] Informations +> **rougail.family**\ +> `standard` *`hidden`*\ +> **Hidden**: if condition1 is false + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| | **rougail.family.variable**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A variable.
**Hidden**: if condition2 is false | 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 54355dce0..8df8fe22d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 fc06db7d9..7e99a73d8 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,11 @@ ## A family - - -| Informations | -|:------------| -| **rougail.family**
`standard` *`hidden`*
**Hidden**: if condition1 is false | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `standard` *`hidden`*\ +> **Hidden**: if condition1 is false | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh index 117f02c4a..193f07c8b 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -23,17 +14,13 @@ โ”‚ rougail.condition2 โ”‚ A second conditional variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: false โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - 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_param_condition_sub_family.adoc b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.adoc index 0dda65f3a..21667b352 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 @@ -1,46 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no |==== === Possibly hidden family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - -`basic` `__hidden__` - - +**rougail.family** + +`basic` `__hidden__` + **Hidden**: if condition is yes - +==== ==== A subfamily +==== +**๐Ÿ›ˆ Informations** -**rougail.family.sub_family** - +**rougail.family.sub_family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md index 9034c9581..2075aebc2 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,24 +1,26 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes +
A subfamily ->>> [!note] Informations -
**rougail.family.sub_family**
`basic` ->>> +> [!note] Informations +> **rougail.family.sub_family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.family.sub_family.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | 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 d1202583a..c2b106e1c 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md index d704992c6..3e371b296 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,18 @@ ## Possibly hidden family - - -| Informations | -|:------------| -| **rougail.family**
`basic` *`hidden`*
**Hidden**: if condition is yes | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family**\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is yes ### A subfamily - - -| Informations | -|:------------| -| **rougail.family.sub_family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.family.sub_family**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh index cdd445244..c571b7808 100644 --- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,27 +11,20 @@ โ”‚ rougail.condition โ”‚ The variable use has condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ 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_mandatory_condition.adoc b/tests/results/test_namespace/24_0family_mandatory_condition.adoc index 70bc4ef11..2919d0b86 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.adoc +++ b/tests/results/test_namespace/24_0family_mandatory_condition.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md index 26e21fe4c..513048714 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/24_0family_mandatory_condition.html index f62722869..a406c99e7 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.html +++ b/tests/results/test_namespace/24_0family_mandatory_condition.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.md b/tests/results/test_namespace/24_0family_mandatory_condition.md index 9af1bfaef..256dca05b 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                     | Description                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.sh b/tests/results/test_namespace/24_0family_mandatory_condition.sh index eff89f09b..56dc8ee3d 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace/24_0family_mandatory_condition.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 9d83f3e46..61b6e5bf1 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md index 28f8566d4..953f4ef54 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html index 8da8d9ce6..52139e6dd 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.html +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md index 4e89b9dc9..5412a7193 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                     | Description                                                                                                  | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 25f870e82..0bef60d52 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 7459797e0..8add5c1ab 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.adoc +++ b/tests/results/test_namespace/24_7validators_variable_optional.adoc @@ -1,37 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.general** - +**rougail.general** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **rougail.general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**rougail.general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **rougail.general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md index cc6fed901..ca5ff4134 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A family ->>> [!note] Informations -
**rougail.general**
`basic` ->>> +> [!note] Informations +> **rougail.general**\ +> `basic` + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------| | **rougail.general.int**
[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.
**Validators**:
- int and int2 must be different
- int and int3 must be different
**Example**: 5 | diff --git a/tests/results/test_namespace/24_7validators_variable_optional.html b/tests/results/test_namespace/24_7validators_variable_optional.html index 511476ae7..516d698d7 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.html +++ b/tests/results/test_namespace/24_7validators_variable_optional.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 2d16d067a..aa3fa3e75 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A family - - -| Informations | -|:------------| -| **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 e332b5ddd..9b74ecbdc 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace/24_7validators_variable_optional.sh @@ -1,36 +1,24 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A family - -rougail.general - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.general +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test_namespace/40_0leadership.adoc b/tests/results/test_namespace/40_0leadership.adoc index a14618c7d..55f84fdf5 100644 --- a/tests/results/test_namespace/40_0leadership.adoc +++ b/tests/results/test_namespace/40_0leadership.adoc @@ -1,37 +1,28 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md index e8a0665e8..0eb533c26 100644 --- a/tests/results/test_namespace/40_0leadership.gitlab.md +++ b/tests/results/test_namespace/40_0leadership.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/40_0leadership.html b/tests/results/test_namespace/40_0leadership.html index fb0cae0bd..af662c866 100644 --- a/tests/results/test_namespace/40_0leadership.html +++ b/tests/results/test_namespace/40_0leadership.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_0leadership.md b/tests/results/test_namespace/40_0leadership.md index c8bf82d31..4e1d01362 100644 --- a/tests/results/test_namespace/40_0leadership.md +++ b/tests/results/test_namespace/40_0leadership.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership.sh b/tests/results/test_namespace/40_0leadership.sh index 45982c081..2859b2704 100644 --- a/tests/results/test_namespace/40_0leadership.sh +++ b/tests/results/test_namespace/40_0leadership.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_0leadership_diff_name.adoc b/tests/results/test_namespace/40_0leadership_diff_name.adoc index 522dbc706..ccd50ecba 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.adoc +++ b/tests/results/test_namespace/40_0leadership_diff_name.adoc @@ -1,37 +1,28 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md index f25883a46..62c6fa809 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/40_0leadership_diff_name.html b/tests/results/test_namespace/40_0leadership_diff_name.html index bcdc684a4..1ef632a1b 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.html +++ b/tests/results/test_namespace/40_0leadership_diff_name.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_0leadership_diff_name.md b/tests/results/test_namespace/40_0leadership_diff_name.md index 358051811..0b0018772 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_diff_name.sh b/tests/results/test_namespace/40_0leadership_diff_name.sh index c06dda837..f7b1d4ca6 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.sh +++ b/tests/results/test_namespace/40_0leadership_diff_name.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc b/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc index 2453773af..e8f8ff3c2 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.adoc @@ -1,39 +1,30 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md index 4691176b7..6521add42 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | 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 15e838612..2a54aeaeb 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md index 03a64c03d..f1b81eed5 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh index ce78b1801..390f315b4 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc b/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc index 0d5528451..3bea4f2c7 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.adoc @@ -1,44 +1,35 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower2. + **Default**: * value1 diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md index 112343744..608363f71 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- leader | 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 b442aa1b2..974b8e95f 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md index 346b24451..7ecd71bf2 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh index 7348197e8..d516e6ff5 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.sh @@ -1,46 +1,33 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ A follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 9297a008d..93291ab4b 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 @@ -1,44 +1,35 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower2. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md index c55e2daa4..e68774435 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The leader.
**Default**:
- leader | 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 3f5505a47..f6c646a1b 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md index 693a4d79a..c79011042 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh index acbdf5a97..5b9b28ef6 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.sh @@ -1,41 +1,28 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ The leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ The follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ The follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ 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 49784d79c..96ed9f0e6 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.adoc @@ -1,33 +1,27 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md index 1a414bfd4..26c066bfe 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | 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 20aaf107c..425890d3f 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.html +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.md b/tests/results/test_namespace/40_0leadership_follower_default_value.md index 1401fa2c4..71de865e7 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.sh b/tests/results/test_namespace/40_0leadership_follower_default_value.sh index 5e134cf13..be75fb005 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.sh +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.adoc b/tests/results/test_namespace/40_0leadership_leader_follower.adoc index 43b916d4b..46deeff8b 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.adoc +++ b/tests/results/test_namespace/40_0leadership_leader_follower.adoc @@ -1,37 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "rougail.leadership.leader" |==== diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md index f14e243b5..b65bef18b 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.html b/tests/results/test_namespace/40_0leadership_leader_follower.html index 3f120baae..0ddf272ae 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.html +++ b/tests/results/test_namespace/40_0leadership_leader_follower.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.md b/tests/results/test_namespace/40_0leadership_leader_follower.md index 0565eb6bd..f4ecc4016 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.md +++ b/tests/results/test_namespace/40_0leadership_leader_follower.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.sh b/tests/results/test_namespace/40_0leadership_leader_follower.sh index 6e170089f..6cd7d1aa6 100644 --- a/tests/results/test_namespace/40_0leadership_leader_follower.sh +++ b/tests/results/test_namespace/40_0leadership_leader_follower.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ 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 225652a12..1008c2b29 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.adoc @@ -1,62 +1,52 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === general +==== +**๐Ÿ›ˆ Informations** -**rougail.general** - +**rougail.general** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **rougail.general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non |==== === general1 +==== +**๐Ÿ›ˆ Informations** -**rougail.general1** - +**rougail.general1** + `basic` - +==== ==== Leader +==== +**๐Ÿ›ˆ Informations** -**rougail.general1.leader** - -This family contains lists of variable blocks. - +**rougail.general1.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**rougail.general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**rougail.general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **rougail.general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **rougail.general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **rougail.general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md index 91673dc4c..540de0603 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,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
general ->>> [!note] Informations -
**rougail.general**
`standard` ->>> +> [!note] Informations +> **rougail.general**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | **rougail.general.mode_conteneur_actif**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.
**Default**: non | @@ -18,14 +18,17 @@
general1 ->>> [!note] Informations -
**rougail.general1**
`basic` ->>> +> [!note] Informations +> **rougail.general1**\ +> `basic` +
Leader ->>> [!note] Informations -
**rougail.general1.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.general1.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.general1.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | Leader. | 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 e6cf369f2..9bca7d865 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.html +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

general

rougail.general diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.md index 2965980f5..fa9f4d949 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## general - - -| Informations | -|:------------| -| **rougail.general**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.general**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,19 +18,18 @@ ## general1 - - -| Informations | -|:------------| -| **rougail.general1**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.general1**\ +> `basic` ### Leader - - -| Informations | -|:------------| -| **rougail.general1.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.general1.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh index c8ff14c65..2744cc536 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  general - -rougail.general - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.general +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -31,27 +19,20 @@ โ”‚  string   standard   mandatory  โ”‚ Default: non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - general1 - -rougail.general1 - - basic  - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.general1 +โ–Œ  basic  Leader - -rougail.general1.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.general1.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_0leadership_reduce.adoc b/tests/results/test_namespace/40_0leadership_reduce.adoc index 5f1244d2f..e610f8441 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.adoc +++ b/tests/results/test_namespace/40_0leadership_reduce.adoc @@ -1,28 +1,25 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -33,10 +30,7 @@ A leader. + * val1 * val2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md index 2c8fbf994..0379e377b 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md +++ b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value_1
- value_2
- value_3
**Examples**:
- val1
- val2 | diff --git a/tests/results/test_namespace/40_0leadership_reduce.html b/tests/results/test_namespace/40_0leadership_reduce.html index b3338c233..b56b4b5f8 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.html +++ b/tests/results/test_namespace/40_0leadership_reduce.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_0leadership_reduce.md b/tests/results/test_namespace/40_0leadership_reduce.md index d6faff2d9..a7b348a06 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.md +++ b/tests/results/test_namespace/40_0leadership_reduce.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_0leadership_reduce.sh b/tests/results/test_namespace/40_0leadership_reduce.sh index a0591ea77..9141b434a 100644 --- a/tests/results/test_namespace/40_0leadership_reduce.sh +++ b/tests/results/test_namespace/40_0leadership_reduce.sh @@ -1,42 +1,29 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace/40_1leadership_append_follower.adoc b/tests/results/test_namespace/40_1leadership_append_follower.adoc index 73a2438ca..0fb0f4b9e 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.adoc +++ b/tests/results/test_namespace/40_1leadership_append_follower.adoc @@ -1,42 +1,30 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**rougail.leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **rougail.leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md index 5335ce621..bddfe5f46 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The leader. | diff --git a/tests/results/test_namespace/40_1leadership_append_follower.html b/tests/results/test_namespace/40_1leadership_append_follower.html index 2ca86e59c..01262a0ea 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.html +++ b/tests/results/test_namespace/40_1leadership_append_follower.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_1leadership_append_follower.md b/tests/results/test_namespace/40_1leadership_append_follower.md index fe57bd160..05b54b110 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_1leadership_append_follower.sh b/tests/results/test_namespace/40_1leadership_append_follower.sh index 75b076e6d..d38db3bc0 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.sh +++ b/tests/results/test_namespace/40_1leadership_append_follower.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.adoc b/tests/results/test_namespace/40_2leadership_calculation_index.adoc index fe31f4b00..e4ff60b91 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_index.adoc @@ -1,38 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md index 13751f913..52b4b7a36 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c | diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.html b/tests/results/test_namespace/40_2leadership_calculation_index.html index 8da4ba6e1..1ed686b19 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.html +++ b/tests/results/test_namespace/40_2leadership_calculation_index.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.md b/tests/results/test_namespace/40_2leadership_calculation_index.md index 7d09bfa4e..94d3369d7 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.sh b/tests/results/test_namespace/40_2leadership_calculation_index.sh index 16eb024bd..3f8caa4be 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_index.sh @@ -1,39 +1,26 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ 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 fe31f4b00..e4ff60b91 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.adoc @@ -1,38 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md index 13751f913..52b4b7a36 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c | 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 8da4ba6e1..1ed686b19 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.html +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.md index 7d09bfa4e..94d3369d7 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh index 16eb024bd..3f8caa4be 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.sh @@ -1,39 +1,26 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ 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 59e6ab698..296b5ff0d 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.adoc @@ -1,38 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === Leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: returns index |==== diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md index 7ad978e37..d4e49b180 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
Leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b
- c | 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 3b8a85681..d1aa8520d 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.html +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

Leadership

rougail.leader diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.md index b4922b6e1..ac4abef5b 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## Leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh index 25ace2905..e767a51f9 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.sh +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.sh @@ -1,39 +1,26 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  Leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: returns index โ”‚ diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.adoc b/tests/results/test_namespace/40_2leadership_leader_calculation.adoc index b29ea1bf6..b39d0c8fa 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.adoc +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.adoc @@ -1,38 +1,29 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + -**Default**: returns val1 and val2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + +**Default**: returns val1 and val2 +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second follower. |==== diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md index 197f92206..f608e486f 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: returns val1 and val2 | diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.html b/tests/results/test_namespace/40_2leadership_leader_calculation.html index 1eefeab7a..fc37b2b7d 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.html +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.md b/tests/results/test_namespace/40_2leadership_leader_calculation.md index d33d018d3..1102091f6 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.sh b/tests/results/test_namespace/40_2leadership_leader_calculation.sh index 6c4f74d63..5822380b6 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.adoc b/tests/results/test_namespace/40_6leadership_follower_multi.adoc index fb7e68d8f..d519bac29 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.adoc +++ b/tests/results/test_namespace/40_6leadership_follower_multi.adoc @@ -1,40 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md index 0f8b9274c..e8b71d690 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The leader. | diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.html b/tests/results/test_namespace/40_6leadership_follower_multi.html index 6cabc73d0..0ea26498a 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.html +++ b/tests/results/test_namespace/40_6leadership_follower_multi.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.md b/tests/results/test_namespace/40_6leadership_follower_multi.md index 856146ac7..0e24ff29c 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.sh b/tests/results/test_namespace/40_6leadership_follower_multi.sh index 3ddd32f37..e47b6daa4 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace/40_6leadership_follower_multi.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -39,7 +26,7 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 4c3571c88..8af1b3b41 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 @@ -1,40 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md index c0a22ed0f..be554f6c8 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. | 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 7259580e6..abac9223c 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md index 33ed61996..d92838da3 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                              | Description                                                                                                           | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh index a1d669106..d7fb088a2 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -39,7 +26,7 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/40_8calculation_boolean.adoc b/tests/results/test_namespace/40_8calculation_boolean.adoc index 1054d65fa..54e1bf5ce 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.adoc +++ b/tests/results/test_namespace/40_8calculation_boolean.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **rougail.multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**rougail.multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **rougail.multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md index af92567f6..eaa088a94 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/40_8calculation_boolean.html index d008eb8c6..ceceff686 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.html +++ b/tests/results/test_namespace/40_8calculation_boolean.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_boolean.md b/tests/results/test_namespace/40_8calculation_boolean.md index 2b9234a74..e7df64f4a 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.md +++ b/tests/results/test_namespace/40_8calculation_boolean.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_boolean.sh b/tests/results/test_namespace/40_8calculation_boolean.sh index 03851c09e..6aa23907d 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.sh +++ b/tests/results/test_namespace/40_8calculation_boolean.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 c324b766e..88827a414 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.adoc @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second variable. + **Default**: return false if the value of var1 is "no" |==== diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md index 35ecf0690..adda05cda 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/40_8calculation_boolean_return_none.html index 930ef5c51..ea6191754 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.html +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.md index 68af81ba5..d0154947d 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 f6db0d92e..6c7fd492d 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_8calculation_integer.adoc b/tests/results/test_namespace/40_8calculation_integer.adoc index f1e92e445..de8356f02 100644 --- a/tests/results/test_namespace/40_8calculation_integer.adoc +++ b/tests/results/test_namespace/40_8calculation_integer.adoc @@ -1,31 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.int1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -First integer variable. + +| **rougail.int1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | First integer variable. + **Default**: if bool returns 1 otherwise return 2 -| - -**rougail.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -Second integer variable. + +| **rougail.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | Second integer variable. + **Default**: if bool returns 3 otherwise return 4 |==== diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md index f7ad102a2..c9be9f403 100644 --- a/tests/results/test_namespace/40_8calculation_integer.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_integer.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/40_8calculation_integer.html index ee43511a9..6eda97efc 100644 --- a/tests/results/test_namespace/40_8calculation_integer.html +++ b/tests/results/test_namespace/40_8calculation_integer.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_integer.md b/tests/results/test_namespace/40_8calculation_integer.md index f20dcc99c..b617191fd 100644 --- a/tests/results/test_namespace/40_8calculation_integer.md +++ b/tests/results/test_namespace/40_8calculation_integer.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_integer.sh b/tests/results/test_namespace/40_8calculation_integer.sh index b0303e2b6..1bb960e49 100644 --- a/tests/results/test_namespace/40_8calculation_integer.sh +++ b/tests/results/test_namespace/40_8calculation_integer.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ 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 4e0b15059..8866fd9d7 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable.adoc @@ -1,34 +1,25 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "rougail.var2" * the value of the variable "rougail.var3" -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md index 7e30ba3f4..c0e687996 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 "[`A second variable`](#rougail.var2)"
- the value of the variable "[`A third variable`](#rougail.var3)" | diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.html b/tests/results/test_namespace/40_8calculation_multi_variable.html index bac0c5d2d..84927ff7b 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.md b/tests/results/test_namespace/40_8calculation_multi_variable.md index eede7633d..14ee90617 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.sh b/tests/results/test_namespace/40_8calculation_multi_variable.sh index 708bb0c0e..fb66526a3 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable.sh @@ -1,27 +1,18 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ 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 f45328b71..e1c4e1264 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.adoc @@ -1,37 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no |==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.fam1** - +**rougail.fam1** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "rougail.var" |==== diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md index 45dc4a70f..aaa607f40 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,19 +1,19 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no |
A family ->>> [!note] Informations -
**rougail.fam1**
`standard` ->>> +> [!note] Informations +> **rougail.fam1**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| | **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.
**Default**: the value of the variable "[`A variable`](#rougail.var)" | 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 892135758..667c931f3 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md index 988418b73..db4899397 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,10 @@ ## A family - - -| Informations | -|:------------| -| **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 acd6df449..8ec0f6af3 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,15 +11,12 @@ โ”‚ rougail.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -rougail.fam1 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 a5163d250..d919c525c 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.adoc @@ -1,44 +1,40 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === First family +==== +**๐Ÿ›ˆ Informations** -**rougail.fam1** - +**rougail.fam1** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no |==== === Second family +==== +**๐Ÿ›ˆ Informations** -**rougail.fam2** - +**rougail.fam2** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.fam1.var" |==== diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md index 3774e9ebf..f86ddd40f 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,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
First family ->>> [!note] Informations -
**rougail.fam1**
`standard` ->>> +> [!note] Informations +> **rougail.fam1**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | **rougail.fam1.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: no | @@ -18,9 +18,10 @@
Second family ->>> [!note] Informations -
**rougail.fam2**
`standard` ->>> +> [!note] Informations +> **rougail.fam2**\ +> `standard` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------| | **rougail.fam2.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.
**Default**: the value of the variable "[`A variable`](#rougail.fam1.var)" | 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 e895766fa..8c02a64a2 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 6ef5abe09..f38d7e1d1 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## First family - - -| Informations | -|:------------| -| **rougail.fam1**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.fam1**\ +> `standard` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +18,10 @@ ## Second family - - -| Informations | -|:------------| -| **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 c0300b08a..910cfb59b 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  First family - -rougail.fam1 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.fam1 +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -31,15 +19,12 @@ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - Second family - -rougail.fam2 - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 a05d17e2b..0f6202a17 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 @@ -1,37 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "rougail.leadership.leader" diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md index 5eff4c5b2..f2cd1f11e 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 839a89da3..95c6adcd9 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md index 49cc781d5..05226ddb7 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh index 2bc75db79..cb6802e1e 100644 --- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,42 +1,29 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 8a2d3f491..82c21d823 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 @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md index 8a65833b6..b3487a556 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 399efe9fa..fc7580056 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md index 588c64207..0c3c09395 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh index e125cf9c5..81ac6caff 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 8a2d3f491..82c21d823 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 @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md index 8a65833b6..b3487a556 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 399efe9fa..fc7580056 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md index 588c64207..0c3c09395 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh index e125cf9c5..81ac6caff 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 0dfd6b582..f4454008a 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 @@ -1,45 +1,36 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === leader +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a * b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | |==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "rougail.leader.follower" +| Variable | Description +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "rougail.leader.follower" |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index 11de2d560..63f7bb483 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
leader ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | **Default**:
- a
- b | 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 296ea9a41..525339221 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

leader

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md index a50f382cf..83844a086 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## leader - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh index 77fa66ef8..399adb1ff 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -1,37 +1,24 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  leader - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ 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 d58d4e3c9..9321f8c64 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.adoc @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md index f6b4621a7..cf849c639 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 86a55b53a..ad64a603d 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md index 44b92abe8..ecbc04f07 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh index aaebcd1b8..6fec7b7d9 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 57da7863c..364ed37f3 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 @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md index b5e782f02..1c42a9e51 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 e480038ff..2183eba09 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md index 62bd8fad0..ec2534e86 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh index 6ca2c7b8c..72e7b4f27 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 57da7863c..364ed37f3 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 @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md index b5e782f02..1c42a9e51 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 e480038ff..2183eba09 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md index 62bd8fad0..ec2534e86 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh index 6ca2c7b8c..72e7b4f27 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ 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 8b5d3971b..c66a22070 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.adoc @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.leader" |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md index 079d3c2e8..c9de38237 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 0bcd0e156..f16c606b8 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md index 8fbe60852..f3ee87c10 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh index 17df3858a..f75c70c66 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc index eae3091b6..9fc643048 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 @@ -22,33 +19,24 @@ A calculated variable. + === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.calculate" -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md index 9f80d505b..21326b5a7 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md @@ -1,19 +1,20 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "[`A calculated variable`](#rougail.calculate)" | diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.html b/tests/results/test_namespace/40_9leadership-calculation-variable.html index 52d7ba33f..d2ecc0996 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.html +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.md b/tests/results/test_namespace/40_9leadership-calculation-variable.md index da8ac5633..4a5655890 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,11 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.sh b/tests/results/test_namespace/40_9leadership-calculation-variable.sh index 5f4b19245..4fde4558e 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.adoc index 5a8886459..101602b91 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 @@ -1,62 +1,50 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership_1** - -This family contains lists of variable blocks. - +**rougail.leadership_1** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== === A second leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership_2** - -This family contains lists of variable blocks. - +**rougail.leadership_2** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.leadership_1.follower" -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md index bbe31e6cc..6484bf675 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | @@ -19,9 +20,11 @@
A second leadership ->>> [!note] Informations -
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------| | **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**: the value of the variable "[`A follower`](#rougail.leadership_1.follower)" | 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 5e8663f68..9cb7ddf53 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership_1 diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md index 81e5810c4..4d6712630 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -21,11 +20,11 @@ ## A second leadership - - -| Informations | -|:------------| -| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh index 48092b14f..079a03edc 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.sh @@ -1,54 +1,37 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership_1 - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership_1 +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second leadership - -rougail.leadership_2 - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership_2 +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.adoc index fb5061d21..96b19f845 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 @@ -1,65 +1,53 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership_1** - -This family contains lists of variable blocks. - +**rougail.leadership_1** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== === A second leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership_2** - -This family contains lists of variable blocks. - +**rougail.leadership_2** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "rougail.leadership_1.leader" |==== diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md index d77415523..08c1c7172 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership_1**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leadership_1.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | @@ -19,9 +20,11 @@
A second leadership ->>> [!note] Informations -
**rougail.leadership_2**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| | **rougail.leadership_2.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- value1
- value2 | 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 e1f32cae7..7e664ad66 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leadership_1 diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md index 21cfc1801..ef74a2347 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership_1**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership_1**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -21,11 +20,11 @@ ## A second leadership - - -| Informations | -|:------------| -| **rougail.leadership_2**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership_2**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh index 75202dcf4..c6144761c 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,62 +1,45 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leadership_1 - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership_1 +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A second leadership - -rougail.leadership_2 - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership_2 +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace/41_0choice_leader.adoc b/tests/results/test_namespace/41_0choice_leader.adoc index b120a635a..14d91799d 100644 --- a/tests/results/test_namespace/41_0choice_leader.adoc +++ b/tests/results/test_namespace/41_0choice_leader.adoc @@ -1,33 +1,27 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === The leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md index b7384faf7..b6d8575d7 100644 --- a/tests/results/test_namespace/41_0choice_leader.gitlab.md +++ b/tests/results/test_namespace/41_0choice_leader.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
The leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. | diff --git a/tests/results/test_namespace/41_0choice_leader.html b/tests/results/test_namespace/41_0choice_leader.html index f71ce88b1..9aa0b6b5e 100644 --- a/tests/results/test_namespace/41_0choice_leader.html +++ b/tests/results/test_namespace/41_0choice_leader.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

The leadership

rougail.leader diff --git a/tests/results/test_namespace/41_0choice_leader.md b/tests/results/test_namespace/41_0choice_leader.md index 6ce8f7de1..28de7270c 100644 --- a/tests/results/test_namespace/41_0choice_leader.md +++ b/tests/results/test_namespace/41_0choice_leader.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## The leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/41_0choice_leader.sh b/tests/results/test_namespace/41_0choice_leader.sh index b380ac2de..eb6abf396 100644 --- a/tests/results/test_namespace/41_0choice_leader.sh +++ b/tests/results/test_namespace/41_0choice_leader.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  The leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -35,9 +22,9 @@ This family contains lists of variable blocks. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc b/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc index 421f7558b..d0bc3ae9b 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.adoc @@ -1,47 +1,38 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true |==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md index 3f728a7ff..17fa3dda0 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md @@ -1,19 +1,20 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------| | **rougail.condition**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: true |
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**:
- a | diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.html b/tests/results/test_namespace/44_4disabled_calcultion_follower.html index a7346ca58..b0df7b81b 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.html +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.md index b0d5f37f2..968d254a0 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                    | Description                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,11 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh index e86974a22..9ec3f8c01 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,24 +11,20 @@ โ”‚ rougail.condition โ”‚ A condition. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory    โ”‚ Disabled: if condition is yes โ”‚ 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 8849b03b8..de4c26345 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.adoc @@ -1,37 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leadership** - -This family contains lists of variable blocks. - +**rougail.leadership** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md index 90e0beca0..445aac664 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leadership**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| | **rougail.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.
**Default**:
- a
- b | 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 730e67f0a..c764fd679 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A leadership

rougail.leadership diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md index 918cbf0c6..5f6b2467b 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A leadership - - -| Informations | -|:------------| -| **rougail.leadership**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leadership**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh index 80e266f6b..c13c2f981 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A leadership - -rougail.leadership - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leadership +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test_namespace/44_4leadership_mandatory.adoc b/tests/results/test_namespace/44_4leadership_mandatory.adoc index 6f91d385a..e5b192a01 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.adoc +++ b/tests/results/test_namespace/44_4leadership_mandatory.adoc @@ -1,32 +1,26 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md index 47bd4e632..9c44aec11 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/44_4leadership_mandatory.html b/tests/results/test_namespace/44_4leadership_mandatory.html index ecc728c61..48e083325 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.html +++ b/tests/results/test_namespace/44_4leadership_mandatory.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/44_4leadership_mandatory.md b/tests/results/test_namespace/44_4leadership_mandatory.md index cb12a3283..938abe969 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory.sh b/tests/results/test_namespace/44_4leadership_mandatory.sh index dd87cebb0..a48e82563 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.sh +++ b/tests/results/test_namespace/44_4leadership_mandatory.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc b/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc index 9892ccbad..0517ca575 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.adoc @@ -1,32 +1,26 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md index e92e146c3..1579cad54 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.html b/tests/results/test_namespace/44_4leadership_mandatory_follower.html index 6dc919eb5..6196f4e4a 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.html +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.md index 11cd7949e..930699c11 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh index eccf29f2d..b0748f753 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc index 8598dffbb..c27958fd6 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.adoc @@ -1,46 +1,35 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no |==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - -`basic` `__hidden__` - - +**rougail.leader** + +This family contains lists of variable blocks. + +`basic` `__hidden__` + **Hidden**: if condition is no - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md index a761bdfb9..cb723ce17 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,19 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: no |
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is no + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. | 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 f1e3ac219..8d480b8b8 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md index b8323ee6f..a90ed731f 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,12 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` *`hidden`*
**Hidden**: if condition is no | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` *`hidden`*\ +> **Hidden**: if condition is no | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh index 4cfe57846..b6a68176f 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,19 +11,14 @@ โ”‚ rougail.condition โ”‚ A condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic   hidden  - -Hidden: if condition is no - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic   hidden  +โ–Œ Hidden: if condition is no โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc index 5b86a9780..e405d479e 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.adoc @@ -1,44 +1,35 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes |==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md index 7ff30fd0b..38199759f 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,19 +1,20 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------| | **rougail.condition**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.
**Default**: yes |
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | 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 45f7ef298..82e8a120a 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md index 17ac5815a..d7f488d25 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,11 @@ ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh index 7f1818ccc..12b66b564 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,17 +11,13 @@ โ”‚ rougail.condition โ”‚ A condition. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc index c7f2cb14b..c6622f2c0 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.adoc @@ -1,37 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === Leader +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: the value of the variable "rougail.leader.leader" + **Disabled**: if the value of "leader" is "a" |==== diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md index f1459a77f..f2e0dac7f 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,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
Leader ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`standard` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.
**Default**:
- a
- b | 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 35ef32822..7aa205dd5 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.html +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

Leader

rougail.leader diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md index 00bb5b040..558d0f438 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## Leader - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh index 1e0fc3692..fa679407d 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.sh @@ -1,38 +1,25 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  Leader - -rougail.leader - -This family contains lists of variable blocks. - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace/60_0family_dynamic.adoc b/tests/results/test_namespace/60_0family_dynamic.adoc index 714042158..28e062843 100644 --- a/tests/results/test_namespace/60_0family_dynamic.adoc +++ b/tests/results/test_namespace/60_0family_dynamic.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md index ff56456d3..97799abe4 100644 --- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md @@ -1,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test_namespace/60_0family_dynamic.html b/tests/results/test_namespace/60_0family_dynamic.html index 97de8ee2f..3c0059f2c 100644 --- a/tests/results/test_namespace/60_0family_dynamic.html +++ b/tests/results/test_namespace/60_0family_dynamic.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic.md b/tests/results/test_namespace/60_0family_dynamic.md index 253412f96..15e64a1a9 100644 --- a/tests/results/test_namespace/60_0family_dynamic.md +++ b/tests/results/test_namespace/60_0family_dynamic.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic.sh b/tests/results/test_namespace/60_0family_dynamic.sh index f90aa480c..b54cd31b7 100644 --- a/tests/results/test_namespace/60_0family_dynamic.sh +++ b/tests/results/test_namespace/60_0family_dynamic.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 e5936df5f..f80c474fc 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md index 36289ebec..e3ec10e46 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Dynamic variable. | 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 33493a2e0..9ce65dc97 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.md b/tests/results/test_namespace/60_0family_dynamic_1_0.md index a5051d7b9..9a9a91efe 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.sh b/tests/results/test_namespace/60_0family_dynamic_1_0.sh index f27461474..2fbaf63af 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 d1b2a86ad..a50a8dc23 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md index 1189dd384..2078f06b6 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Dynamic variable. | 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 99445ade2..d18c603b4 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md index a974883db..6fead232e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh index 98a3cfa04..e360c21b8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 c4aa9ab73..d046f65e3 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md index a4db5f9e7..b49f9cab5 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dyn variable. | 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 0dad409a8..7e6c49de9 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md index cfc82a87f..9db81cbf8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh index 8967f4261..c48300d49 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 d11a9a24c..27145bc31 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md index 8d6fff206..a179ec496 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dyn variable. | 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 ce17cc567..3992f00f8 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md index 9a5bcea2b..de92a74d9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh index e25805c3f..4b0248124 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6daf3c488..38ac73f04 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md index e15ddcaf4..478e22851 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 a53da55d9..003c1eab8 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.html +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.md b/tests/results/test_namespace/60_0family_dynamic_1_1.md index 9c8dd1b0f..6bc031fcb 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.sh b/tests/results/test_namespace/60_0family_dynamic_1_1.sh index 172e1e99b..dfc6fed1b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 2867768ac..221c72e69 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md index 1294b55f0..0f904c63f 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 36e398696..9c9da8989 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md index ea1b1607b..0ca291d74 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh index 11d600677..1ef143426 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 7795a0de0..23768b4bf 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_empty.adoc @@ -1,39 +1,32 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. |==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** -**rougail.dyn__example__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__example__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md index efb5d62e1..2120f14f5 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md @@ -1,19 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*example***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.html b/tests/results/test_namespace/60_0family_dynamic_empty.html index 4e685e976..c5029f7d2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.md b/tests/results/test_namespace/60_0family_dynamic_empty.md index 1d4fdf31e..b2220ef9d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,12 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*example***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*example***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.sh b/tests/results/test_namespace/60_0family_dynamic_empty.sh index b7683d030..4b10e95c6 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_empty.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,19 +12,14 @@ โ”‚  string   standard   unique    โ”‚ โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynexample - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 9bff57a9b..88797bb08 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 @@ -22,32 +19,25 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val_1__** + -**rougail.dyn__val_2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val_2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val_1__.var1** + +| **rougail.dyn__val_1__.var1** + **rougail.dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.dyn__val_1__.var2** + +| **rougail.dyn__val_1__.var2** + **rougail.dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md index 79ab1c571..665c6d854 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val_1***\ +> **rougail.dyn*val_2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **rougail.dyn*val_1*.var1**
**rougail.dyn*val_2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | 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 0dabde5ec..96ba033d5 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval_1
rougail.dynval_2 +rougail.dynval_1 + +rougail.dynval_2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md index 8cfa2606e..197a8e7fb 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val_1***
**rougail.dyn*val_2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val_1***\ +> **rougail.dyn*val_2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh index 128d629aa..065f3c658 100644 --- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval_1 -rougail.dynval_2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 1dcac3dad..339d310a3 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * 1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__1__** + -**rougail.dyn__2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.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 6e79a7eb9..023600b4e 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | 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 9ea28c2d5..7956caec9 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dyn1
rougail.dyn2 +rougail.dyn1 + +rougail.dyn2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md index dcec88173..24e501550 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                            | Description                                                                                                         | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                            | Description                                                                                                         | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh index 0ac99a9a3..c028e03d3 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dyn1 -rougail.dyn2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 1e4514838..11fe311a1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * 1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__1__** + -**rougail.dyn__2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.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 433c0d644..6ba5f7c85 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | 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 3dac5f9d3..b522a8908 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.html +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dyn1
rougail.dyn2 +rougail.dyn1 + +rougail.dyn2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md index 9d00d95f0..32d9ab372 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                        | Description                                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh index 1b90ec0b1..a8e2af46d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dyn1 -rougail.dyn2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 b0ba54dae..41640f413 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md index 8c0e87336..f8ce6543d 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | 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 c0f7b8cb6..c1cf84d12 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.html +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.md b/tests/results/test_namespace/60_0family_dynamic_no_description.md index 0e9ec3d3b..7d3c0dba2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.sh b/tests/results/test_namespace/60_0family_dynamic_no_description.sh index 2584a5062..d34727b2f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 e1723bf88..30f2561e7 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md index c3e84d5f4..b01e5c4e7 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | 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 24fae7c61..210eaf02d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md index 132b63a58..116a08e3d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh index d01f0acdc..676431b5d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6d515cd0f..8705726ee 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.adoc @@ -1,34 +1,30 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: (from an undocumented variable) * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic 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 f71aee2df..c19ddd5a1 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,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A dynamic family ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: (from an undocumented variable)
- val1
- val2 + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 fe6e59749..44bcc089a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.html +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.html @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md index 3513c609a..072797c5e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.md +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: (from an undocumented variable)
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: (from an undocumented variable)
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh index b634e1c34..880a557dc 100644 --- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: (from an undocumented variable) -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 b86f17a93..80a635b65 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_static.adoc @@ -1,34 +1,30 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md index 417fbd5b8..3b02083eb 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md @@ -1,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A dynamic family ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. | diff --git a/tests/results/test_namespace/60_0family_dynamic_static.html b/tests/results/test_namespace/60_0family_dynamic_static.html index d7678dad4..0fe041928 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.html +++ b/tests/results/test_namespace/60_0family_dynamic_static.html @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_static.md b/tests/results/test_namespace/60_0family_dynamic_static.md index c3731bcb9..c59de330a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_static.sh b/tests/results/test_namespace/60_0family_dynamic_static.sh index 245df8439..79884d8e2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace/60_0family_dynamic_static.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 aa33aa847..0e10a9c9b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_test.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md index dae9b1325..9adccc4dd 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md @@ -1,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | diff --git a/tests/results/test_namespace/60_0family_dynamic_test.html b/tests/results/test_namespace/60_0family_dynamic_test.html index 10bb99ab4..29324190e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.html +++ b/tests/results/test_namespace/60_0family_dynamic_test.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_test.md b/tests/results/test_namespace/60_0family_dynamic_test.md index 4a3b457f6..a5ecef710 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_test.sh b/tests/results/test_namespace/60_0family_dynamic_test.sh index f168526fe..68908cb15 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace/60_0family_dynamic_test.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6c4de669e..bb42cb98e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 @@ -22,24 +19,20 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md index 1436da385..c8e6e284c 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 e685334a8..0dc3399c5 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.html +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.md index 45c561e21..ed67a2da9 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.md +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh index 93ccd7029..77f570b4a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 721107a1c..57979bee1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.adoc @@ -1,40 +1,33 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. |==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** -**rougail.dyn__example__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__example__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md index d9878f4b3..8a7c42795 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,19 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **rougail.dyn*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | 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 ea3ae0a7f..c5e78609b 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md index 4ae187043..1530c278f 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,12 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*example***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh index fe5a34437..9e5a7490d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,19 +12,14 @@ โ”‚  string   basic   mandatory   unique  โ”‚ โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynexample - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 c63f4195d..5ff757411 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.adoc @@ -1,35 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__a__** + -**rougail.dyn__b__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__b__** + +This family builds families dynamically. + +`standard` + **Identifiers**: * a * b - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__a__.var** + +| **rougail.dyn__a__.var** + **rougail.dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md index 503307d0a..f2ed790e7 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,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A dynamic family ->>> [!note] Informations -
**rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b ->>> +> [!note] Informations +> **rougail.dyn*a***\ +> **rougail.dyn*b***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- a
- b + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------| | **rougail.dyn*a*.var**
**rougail.dyn*b*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: val | 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 83fd6db87..745804be2 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.html @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A dynamic family

-rougail.dyna
rougail.dynb +rougail.dyna + +rougail.dynb This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md index b3bd13f68..2c43a1989 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*a***
**rougail.dyn*b***
This family builds families dynamically.
`standard`
**Identifiers**:
- a
- b | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*a***\ +> **rougail.dyn*b***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- a
- b | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh index ce53f03f2..049c365b1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A dynamic family - -rougail.dyna -rougail.dynb - -This family builds families dynamically. - - standard  - -Identifiers: -- a -- b - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 88901c984..136e19270 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,25 +19,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md index 665805ce3..7cd9fdb38 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1* or *val2*.
**Default**: a value | 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 e634f2880..4bc7245f1 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md index 3adc762f4..7d75e0264 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh index 4ca18012f..7dc8c35f7 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 f788fe18c..caf021d36 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,25 +19,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md index 765a7c0ee..787091221 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable with suffix *val1* or *val2*.
**Default**: a value | 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 c47587772..92fbc85b6 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md index 60fb99e17..f89cb913e 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh index 06a19d215..d4c3628cf 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 bb7bb1b8a..fb2228553 100644 --- a/tests/results/test_namespace/60_0family_mode.adoc +++ b/tests/results/test_namespace/60_0family_mode.adoc @@ -1,26 +1,24 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A family +==== +**๐Ÿ›ˆ Informations** -**rougail.family** - +**rougail.family** + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **rougail.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md index 109af0972..6037d046f 100644 --- a/tests/results/test_namespace/60_0family_mode.gitlab.md +++ b/tests/results/test_namespace/60_0family_mode.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A family ->>> [!note] Informations -
**rougail.family**
`basic` ->>> +> [!note] Informations +> **rougail.family**\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------| | **rougail.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.
**Default**: non | diff --git a/tests/results/test_namespace/60_0family_mode.html b/tests/results/test_namespace/60_0family_mode.html index ee2552e32..67cb7b703 100644 --- a/tests/results/test_namespace/60_0family_mode.html +++ b/tests/results/test_namespace/60_0family_mode.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail 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 35fad5f2b..f8315cc2b 100644 --- a/tests/results/test_namespace/60_0family_mode.md +++ b/tests/results/test_namespace/60_0family_mode.md @@ -1,18 +1,16 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A family - - -| Informations | -|:------------| -| **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 6e208cab4..dbeb511d7 100644 --- a/tests/results/test_namespace/60_0family_mode.sh +++ b/tests/results/test_namespace/60_0family_mode.sh @@ -1,28 +1,16 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A family - -rougail.family - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 d895eb01b..e9382609d 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,25 +19,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__1__** + -**rougail.dyn__2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: index of suffix value - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md index c91eaa6ae..d1c809498 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md @@ -1,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value ->>> +> [!note] Informations +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: index of suffix value + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **rougail.dyn*1*.var**
**rougail.dyn*2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.html b/tests/results/test_namespace/60_1family_dynamic_jinja.html index 650beae6f..eaa9dce27 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.html +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dyn1
rougail.dyn2 +rougail.dyn1 + +rougail.dyn2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.md b/tests/results/test_namespace/60_1family_dynamic_jinja.md index 0ac6406ff..8fb2f6378 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*1***
**rougail.dyn*2***
This family builds families dynamically.
`standard`
**Identifiers**: index of suffix value | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*1***\ +> **rougail.dyn*2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: index of suffix value | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.sh b/tests/results/test_namespace/60_1family_dynamic_jinja.sh index 5a805c3aa..ee563b7c3 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.sh +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dyn1 -rougail.dyn2 - -This family builds families dynamically. - - standard  - -Identifiers: index of suffix value - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 9e055990c..d3443df21 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,43 +19,37 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== ==== A family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.family** + -**rougail.dyn__val2__.family** - +**rougail.dyn__val2__.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.family.var** + +| Variable | Description +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md index 51b4444bb..64acbd3c0 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,24 +1,29 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
A family ->>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` ->>> +> [!note] Informations +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| | **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. | 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 b1cdd304a..f60af0d21 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A family

-rougail.dynval1.family
rougail.dynval2.family +rougail.dynval1.family + +rougail.dynval2.familybasic diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md index d9d1938dc..059317a26 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,21 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh index 25c1f5274..dba069485 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,52 +1,35 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 62cb0e27d..40245f2e8 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,44 +19,38 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A family inside dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.family** + -**rougail.dyn__val2__.family** - +**rougail.dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of 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 cfabacd58..8a7398e3e 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,24 +1,29 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
A family inside dynamic family ->>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` ->>> +> [!note] Informations +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | 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 d7011a820..2681ab454 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A family inside dynamic family

-rougail.dynval1.family
rougail.dynval2.family +rougail.dynval1.family + +rougail.dynval2.familystandard diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md index 8534cd916..3703a1d2c 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,21 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" ### A family inside dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh index 1a1640792..7bac931c2 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -1,52 +1,35 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 81b1c8586..6874278bd 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 @@ -22,44 +19,38 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A family inside dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.family** + -**rougail.dyn__val2__.family** - +**rougail.dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of 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 670dfd016..e2b709772 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,24 +1,29 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
A family inside dynamic family ->>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` ->>> +> [!note] Informations +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------| | **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: the value of the identifier | 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 6ebb0affc..bfe345340 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A family inside dynamic family

-rougail.dynval1.family
rougail.dynval2.family +rougail.dynval1.family + +rougail.dynval2.familystandard diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index 4d4265788..6f29b5e14 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,21 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" ### A family inside dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index ab796af10..e2f6caefc 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,52 +1,35 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 532b0b387..2cca4637d 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,43 +19,37 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== ==== A family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.family** + -**rougail.dyn__val2__.family** - +**rougail.dyn__val2__.family** + `basic` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.family.var** + +| Variable | Description +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index aedc87951..6dcd3bfac 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,24 +1,29 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
A family ->>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` ->>> +> [!note] Informations +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------| | **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | With a variable. | 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 3cf0414e2..6874ca904 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A family

-rougail.dynval1.family
rougail.dynval2.family +rougail.dynval1.family + +rougail.dynval2.familybasic diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md index ab42aed54..cf5ab6cc6 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,21 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 7c22baded..5589ff47a 100644 --- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,52 +1,35 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 a411ca0ad..f7fbfcedb 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 @@ -22,36 +19,29 @@ A suffx variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md index a9568222d..995601f31 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | 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 fa7305e04..8a934ca67 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.html +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md index ab62ccc01..d4f445771 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh index a710f82ff..2c1be88a4 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 dda50fad0..d9af36b21 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 @@ -22,36 +19,29 @@ A suffx variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md index 5e4c238e3..63253f080 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffx variable`](#rougail.var1)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | 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 3b38201bf..a942ba2d4 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md index 5f0e7d989..2913fdabd 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh index 9d07f1f51..d70592235 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 17dfc9db6..97006209b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.adoc @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` `__hidden__` - - -**Hidden**: if var2 is no - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` `__hidden__` + +**Hidden**: if var2 is no + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md index 6153a44d9..1bb369344 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 | @@ -12,9 +11,14 @@
A dynamic family ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if var2 is no\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.html b/tests/results/test_namespace/60_5family_dynamic_calc2.html index 5dfb47231..732a5545d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -19,7 +17,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.md b/tests/results/test_namespace/60_5family_dynamic_calc2.md index 4c27b950b..1018e25de 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,14 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if var2 is no\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.sh b/tests/results/test_namespace/60_5family_dynamic_calc2.sh index 8b717213b..d1c6a7acd 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.sh @@ -1,46 +1,31 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard   hidden  - -Hidden: if var2 is no - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6e08dc9e0..a8274c15d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.adoc @@ -1,54 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` `__hidden__` - - -**Hidden**: if var2 is no - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` `__hidden__` + +**Hidden**: if var2 is no + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md index 49cce46b9..ad0b8914f 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 | @@ -12,9 +11,14 @@
A dynamic family ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if var2 is no\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: val | 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 b9feaff40..0e9828b99 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -19,7 +17,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md index 955fba7a0..153b9a5fc 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,14 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if var2 is no
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if var2 is no\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh index a4f515f4d..538a3c8de 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.sh @@ -1,46 +1,31 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard   hidden  - -Hidden: if var2 is no - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 22a207d36..c5c5ed795 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,35 +19,28 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md index efe48bb5f..4dc62fa53 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 dce1d7527..4778a9800 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md index 76c0adf85..f2725c78b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh index 0be1c474c..04587347c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 1fdbfa737..5cb11759f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,25 +19,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md index 473e8194a..c3789d8ca 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier | 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 d38f2dec2..2fefc7715 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md index f30f7e210..2e47ff88e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh index 1ee0c572a..03a1cad02 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6920b2d11..40874071e 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,25 +19,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md index 5ced31679..a8259db57 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Suffix has value.
**Default**: the value of the identifier | 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 32f6ccc34..8c5e800b7 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md index bf9e50669..8bda1d14f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh index de3b62492..e4bcc8cf4 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 3de16ac53..702cb2de5 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 @@ -1,35 +1,31 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md index 79531d658..1c0869367 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,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A dynamic variable.
**Disabled**: when the identifier is "val1" | 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 490d25f50..bc82fc64d 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 @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md index e4e0bb750..262770145 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh index 6c6ef2588..c2a3c3f0c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 4694a9561..eee36f3c8 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 @@ -1,27 +1,21 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md index c4771d1bf..0c1fa6d1e 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.html index 40a0f2381..92dcf5cca 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md index 284f224cd..a8b21d378 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 0e876e0ec..cd3578007 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ โ”‚ 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 e8f6f91a0..84ab1b67b 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,35 +19,28 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md index 9d6ce64ba..c5c58e265 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 34e41b099..a72166339 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md index f90f43ca3..2c2244082 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh index aab272649..891dce694 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 992263b84..ba727f455 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 @@ -1,51 +1,41 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Example**: val1 |==== === dyn__val1__ +==== +**๐Ÿ›ˆ Informations** -**rougail.dyn__val1__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val1__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **rougail.dyn__val1__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md index b713b6f12..869851154 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,19 +1,21 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 ad2e86976..fc889a6b5 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md index 5891b4adc..20f118073 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,12 @@ ## dyn*val1* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh index e34d0a786..6f38962ad 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -21,19 +12,14 @@ โ”‚  string   standard   unique    โ”‚ Example: val1 โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 - -rougail.dynval1 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6cab7fb9c..3bcfe9ef2 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 @@ -1,25 +1,19 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" if it is defined -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -28,24 +22,20 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md index 006d3d821..16db9f28f 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>> | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------| | **rougail.var2**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.
**Default**: the value of the variable "[`A dynamic variable`](#rougail.dynval1.var)" if it is defined | @@ -12,9 +11,13 @@
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 1dc2cce99..999f6e20c 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -19,7 +17,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md index 4e517ba68..044bcd241 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh index 156788c65..bad0292a0 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -24,23 +15,18 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 0c1a355a0..0ecc43fd0 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 @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: a value (from an undocumented variable) |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md index ac690416a..18061c36f 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.html index 691c8d279..6a4a18043 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md index 56479c61b..aa9532c70 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 d8ef045c5..8c44a626f 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: a value (from an โ”‚ 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 9b3f9bc85..9428591e5 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 @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable calculated. + **Default**: true (from an undocumented variable) |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md index c78120875..5647bb4cc 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.html index affb57e09..b13f709f2 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md index 75b9c027a..4dbddd641 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 a35bc8273..9b8dfc514 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,26 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true (from an undocumented โ”‚ 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 3e3926c2a..fa2c01104 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 @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable calculated. + **Default**: (from an undocumented variable) * a value diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md index 3ff15c4ea..641567d9f 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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.html b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.html index 3cf4b77ee..820c7ac74 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md index ad4d7a5c1..a3b108fb1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 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 c9c0e7a7d..72e4147b7 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,31 +1,22 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: (from an undocumented โ”‚ โ”‚ unique   multiple  โ”‚ variable) โ”‚ -โ”‚ โ”‚ - a value โ”‚ -โ”‚ โ”‚ - a second value โ”‚ +โ”‚ โ”‚ โ€ข a value โ”‚ +โ”‚ โ”‚ โ€ข a second value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 894df746b..dbefe4e66 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,25 +19,21 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md index 9e71837c3..1e4709863 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix | 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 6ff477b94..ab567ae92 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md index cc4e5d2a5..7f2b51e67 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh index c78a8501f..af19d599d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 972f9654d..f505f3c3a 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 @@ -22,25 +19,21 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md index b014ff188..c7efefa72 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.
**Default**: from suffix | 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 95e38c998..9276c2052 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md index f44fa590d..a1c2c4a72 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh index 460068d3c..e56bba853 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 22a207d36..c5c5ed795 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,35 +19,28 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md index efe48bb5f..4dc62fa53 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 dce1d7527..4778a9800 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.html +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md index 76c0adf85..f2725c78b 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh index 0be1c474c..04587347c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 65f2a7a18..6230719b3 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 @@ -1,44 +1,37 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A dynamic famify for __val1__ or A dynamic famify for __val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.dyn__val1__.var2** + **rougail.dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "rougail.dyn__val1__.var1" has the value "val1" -* when the variable "rougail.dyn__val2__.var1" has the value "val1" +* when the variable "rougail.dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md index ac79a7faf..77ba8926f 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,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A dynamic famify for *val1* or A dynamic famify for *val2* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 58b215cf7..f05b13a6b 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 @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md index 650a7c9b6..34324d572 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                             | Description                                                                                                          | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh index bda4670e1..7ecd358a1 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A dynamic famify for val1 or A dynamic famify for val2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: +โ–Œ  โ€ข val1 +โ–Œ  โ€ข val2 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -40,10 +26,10 @@ This family builds families dynamically. โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ rougail.dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable โ”‚ โ”‚ disabled  โ”‚ "rougail.dynval1.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ -โ”‚ โ”‚ - when the variable โ”‚ +โ”‚ โ”‚ โ€ข when the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.adoc index d1b11a0c7..17c47218c 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 @@ -1,45 +1,38 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A dynamic famify for __val1__ or A dynamic famify for __val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: when the variable "rougail.dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md index 4f3c9e4c8..d3d939c48 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,15 +1,18 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A dynamic famify for *val1* or A dynamic famify for *val2* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var1**
**rougail.dyn*val2*.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 ff80c7195..bcb7f0898 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 @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md index f2f49613f..c5a43b393 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.md @@ -1,18 +1,19 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A dynamic famify for *val1* or A dynamic famify for *val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                                | Description                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh index 9226e5acc..8e4902bca 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,35 +1,21 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A dynamic famify for val1 or A dynamic famify for val2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 e8f6f91a0..84ab1b67b 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,35 +19,28 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md index 9d6ce64ba..c5c58e265 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 34e41b099..a72166339 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md index f90f43ca3..2c2244082 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh index aab272649..891dce694 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 5439d200f..01188b3aa 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.adoc @@ -1,56 +1,48 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` `__hidden__` - - -**Hidden**: if suffix == 'val2' - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` `__hidden__` + +**Hidden**: if suffix == 'val2' + **Identifiers**: * val1 * val2 - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== ==== A family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.family** + -**rougail.dyn__val2__.family** - +**rougail.dyn__val2__.family** + `standard` - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.family.var** + +| Variable | Description +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md index b6e7af5a9..d00fa472b 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,24 +1,30 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
A dynamic family ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if suffix == 'val2'\ +> **Identifiers**:
- val1
- val2 + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
A family ->>> [!note] Informations -
**rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` ->>> +> [!note] Informations +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| | **rougail.dyn*val1*.family.var**
**rougail.dyn*val2*.family.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A new variable. | 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 bdfbed2f0..67e1ca889 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.html @@ -1,14 +1,14 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -30,7 +30,9 @@ This family builds families dynamically.

A family

-rougail.dynval1.family
rougail.dynval2.family +rougail.dynval1.family + +rougail.dynval2.family standard diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md index df6ba61b7..fa5ad752c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md @@ -1,18 +1,20 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard` *`hidden`*
**Hidden**: if suffix == 'val2'
**Identifiers**:
- val1
- val2 | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard` *`hidden`*\ +> **Hidden**: if suffix == 'val2'\ +> **Identifiers**:
- val1
- val2 | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -20,11 +22,11 @@ ### A family - - -| Informations | -|:------------| -| **rougail.dyn*val1*.family**
**rougail.dyn*val2*.family**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.family**\ +> **rougail.dyn*val2*.family**\ +> `standard` | Variable                                                                                       | Description                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh index ddd1844f0..a2079bbde 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.sh @@ -1,37 +1,22 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard   hidden  - -Hidden: if suffix == 'val2' - -Identifiers: -- val1 -- val2 - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard   hidden  +โ–Œ Hidden: if suffix == 'val2' +โ–Œ Identifiers: +โ–Œ  โ€ข val1 +โ–Œ  โ€ข val2 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -40,16 +25,13 @@ This family builds families dynamically. โ”‚ rougail.dynval2.var โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A family - -rougail.dynval1.family -rougail.dynval2.family - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 6117d13e4..e5549b346 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -24,64 +21,49 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.__val1___dyn** + **rougail.__val2___dyn** + **rougail.__val3___dyn** + -**rougail.__val4___dyn** - -This family builds families dynamically. - -`standard` - +**rougail.__val4___dyn** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + **rougail.__val3___dyn.var1** + **rougail.__val4___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + **rougail.__val3___dyn.var2** + **rougail.__val4___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 2. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + **rougail.__val3___dyn.var3** + **rougail.__val4___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 3. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + **rougail.__val3___dyn.var4** + **rougail.__val4___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A variable 4. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. + **Default**: the value of the variable "rougail.val4_dyn.var1" + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md index 56f4624d0..406297f69 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,19 +1,24 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> **rougail.*val3*_dyn**\ +> **rougail.*val4*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
**rougail.*val3*_dyn.var1**
**rougail.*val4*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable 1.
**Default**: the value of the identifier | 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 5670c1f75..a971050ba 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -20,7 +18,13 @@

A dynamic family

-rougail.val1_dyn
rougail.val2_dyn
rougail.val3_dyn
rougail.val4_dyn +rougail.val1_dyn + +rougail.val2_dyn + +rougail.val3_dyn + +rougail.val4_dyn This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md index 0ed4e0343..b8cb8477c 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,15 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
**rougail.*val3*_dyn**
**rougail.*val4*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> **rougail.*val3*_dyn**\ +> **rougail.*val4*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                | Description                                                                                                             | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh index 214c9cb84..62fcb90e4 100644 --- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.sh @@ -1,45 +1,31 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ -โ”‚ โ”‚ - val4 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.val1_dyn -rougail.val2_dyn -rougail.val3_dyn -rougail.val4_dyn - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.val1_dyn +โ–Œ rougail.val2_dyn +โ–Œ rougail.val3_dyn +โ–Œ rougail.val4_dyn +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc index 8080014b6..21c531451 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.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 4460da3ad..449459a09 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 98206cacf..a243a586e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md index ce2d03b64..c9d673d98 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh index 554791bd2..c2a040884 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -50,9 +36,9 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc index 8adf4d2ad..00332907a 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.adoc @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -31,25 +25,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md index 411fd32f6..e623b63ee 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 "[`A variable inside a dynamic family`](#rougail.my_dyn_family_*val1*.var)"
- the value of the variable "[`A variable inside a dynamic family`](#rougail.my_dyn_family_*val2*.var)" | @@ -12,9 +11,13 @@
A dynamic family ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 5f878bfb5..512b28947 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -20,7 +18,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md index 1f27c522d..e62211ec5 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh index 529bbcac0..e46ee1d3d 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.sh @@ -1,48 +1,34 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.adoc index 0c68203c2..96518776b 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 @@ -1,28 +1,22 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -31,25 +25,21 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md index 70f488aad..21cd9180f 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,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 "[`A variable inside a dynamic family`](#rougail.my_dyn_family_*val1*.var)"
- the value of the variable "[`A variable inside a dynamic family`](#rougail.my_dyn_family_*val2*.var)" | @@ -12,9 +11,13 @@
A dynamic family ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 cc4964b41..32a56364b 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -20,7 +18,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md index 47a9d8883..889033916 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,11 +12,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh index fddc12fe8..21afcb946 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.sh @@ -1,48 +1,34 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.adoc index 8080014b6..21c531451 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.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 4460da3ad..449459a09 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 98206cacf..a243a586e 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md index ce2d03b64..c9d673d98 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh index 554791bd2..c2a040884 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -50,9 +36,9 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.adoc index 124a7a9fd..46aa64df0 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.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 adbf914bd..afd27d2a6 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 f556abdb1..b98f8d275 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md index 83c4fdb5d..f0256440e 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh index e6f6c6937..f5eda2d66 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -50,9 +36,9 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.adoc index 4210fae5e..c20094822 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md index faab9dce3..c2068228c 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 c8d6c2841..a2f699d2f 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md index e0fa93f24..0b3e28056 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh index d9f6b806d..1c73a6031 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.adoc index 5c2b2007d..56a51b1d2 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md index 20de204b1..84bc87fda 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.var**
**rougail.my_dyn_family_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable inside a dynamic family.
**Default**: the value of the identifier | 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 d9c0ce1ad..bd656023c 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md index 10faf71ff..2d51fe616 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh index 2fa907433..24671e724 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc index c46f880c7..e9a0ede0c 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,52 +19,44 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__** + -**rougail.my_dyn_family___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A sub dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.my_dyn_family___val1__.subdyn___val1__** + **rougail.my_dyn_family___val1__.subdyn___val2__** + **rougail.my_dyn_family___val2__.subdyn___val1__** + -**rougail.my_dyn_family___val2__.subdyn___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.my_dyn_family___val2__.subdyn___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_dyn_family___val1__.subdyn___val1__.var** + +| **rougail.my_dyn_family___val1__.subdyn___val1__.var** + **rougail.my_dyn_family___val1__.subdyn___val2__.var** + **rougail.my_dyn_family___val2__.subdyn___val1__.var** + **rougail.my_dyn_family___val2__.subdyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside a sub dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.subdyn___val1__.var" if diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md index 357d0a9e7..c593ee737 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,24 +1,33 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
A sub dynamic family ->>> [!note] Informations -
**rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.my_dyn_family_*val1*.subdyn_*val1***\ +> **rougail.my_dyn_family_*val1*.subdyn_*val2***\ +> **rougail.my_dyn_family_*val2*.subdyn_*val1***\ +> **rougail.my_dyn_family_*val2*.subdyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------| | **rougail.my_dyn_family_*val1*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val1*.subdyn_*val2*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val1*.var**
**rougail.my_dyn_family_*val2*.subdyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside a sub dynamic family.
**Default**: the value of the identifier | 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 4fec9dd0e..935e8a62c 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.my_dyn_family_val1
rougail.my_dyn_family_val2 +rougail.my_dyn_family_val1 + +rougail.my_dyn_family_val2 This family builds families dynamically. @@ -28,7 +28,13 @@ This family builds families dynamically.

A sub dynamic family

-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 +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. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md index a63326794..e8264ab61 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,25 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1***
**rougail.my_dyn_family_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1***\ +> **rougail.my_dyn_family_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" ### A sub dynamic family - - -| Informations | -|:------------| -| **rougail.my_dyn_family_*val1*.subdyn_*val1***
**rougail.my_dyn_family_*val1*.subdyn_*val2***
**rougail.my_dyn_family_*val2*.subdyn_*val1***
**rougail.my_dyn_family_*val2*.subdyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.my_dyn_family_*val1*.subdyn_*val1***\ +> **rougail.my_dyn_family_*val1*.subdyn_*val2***\ +> **rougail.my_dyn_family_*val2*.subdyn_*val1***\ +> **rougail.my_dyn_family_*val2*.subdyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh index 61cd430ce..7e2f1ff43 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -1,58 +1,39 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.my_dyn_family_val1 -rougail.my_dyn_family_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1 +โ–Œ rougail.my_dyn_family_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" A sub dynamic family - -rougail.my_dyn_family_val1.subdyn_val1 -rougail.my_dyn_family_val1.subdyn_val2 -rougail.my_dyn_family_val2.subdyn_val1 -rougail.my_dyn_family_val2.subdyn_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.my_dyn_family_val1.subdyn_val1 +โ–Œ rougail.my_dyn_family_val1.subdyn_val2 +โ–Œ rougail.my_dyn_family_val2.subdyn_val1 +โ–Œ rougail.my_dyn_family_val2.subdyn_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -70,10 +51,10 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.adoc index 344fbc323..a0590ac50 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,36 +19,29 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn___val1__** + -**rougail.dyn___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md index 95d2e99dc..3d7e46228 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn_*val1***\ +> **rougail.dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| | **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier | 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 74cac897d..ef78448c7 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dyn_val1
rougail.dyn_val2 +rougail.dyn_val1 + +rougail.dyn_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md index 6e5bd9212..1386412e4 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn_*val1***\ +> **rougail.dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh index ef29f1ee1..e06bd4177 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dyn_val1 -rougail.dyn_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dyn_val1 +โ–Œ rougail.dyn_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.adoc index 3df3d941b..430585d68 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 @@ -22,36 +19,29 @@ Asuffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn___val1__** + -**rougail.dyn___val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn___val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" if it is defined |==== diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 09fd58886..e2620e9f1 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn_*val1***\ +> **rougail.dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`Asuffix variable`](#rougail.var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------| | **rougail.dyn_*val1*.var**
**rougail.dyn_*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable inside dynamic family.
**Default**: the value of the identifier | 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 cad32131f..14c746601 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dyn_val1
rougail.dyn_val2 +rougail.dyn_val1 + +rougail.dyn_val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md index 9041594e4..68f700605 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn_*val1***
**rougail.dyn_*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn_*val1***\ +> **rougail.dyn_*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh index 5f58e4dbb..7cb725e12 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dyn_val1 -rougail.dyn_val2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dyn_val1 +โ–Œ rougail.dyn_val2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.adoc b/tests/results/test_namespace/60_6family_dynamic_inside.adoc index 8020bd6ea..d3ec87169 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_inside.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,50 +19,35 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.__val1___dyn** + -**rougail.__val2___dyn** - -This family builds families dynamically. - -`standard` - +**rougail.__val2___dyn** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md index baac48884..9448fcfd2 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md @@ -1,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier | diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.html b/tests/results/test_namespace/60_6family_dynamic_inside.html index 86efcfad0..0e8d47c33 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.html +++ b/tests/results/test_namespace/60_6family_dynamic_inside.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.val1_dyn
rougail.val2_dyn +rougail.val1_dyn + +rougail.val2_dyn This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.md b/tests/results/test_namespace/60_6family_dynamic_inside.md index 390374abc..4c2cb4640 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.sh b/tests/results/test_namespace/60_6family_dynamic_inside.sh index bccf0400a..7bf9fc30b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.sh +++ b/tests/results/test_namespace/60_6family_dynamic_inside.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.val1_dyn -rougail.val2_dyn - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.val1_dyn +โ–Œ rougail.val2_dyn +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc index cb6c92408..181b69635 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,50 +19,35 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.__val1___dyn** + -**rougail.__val2___dyn** - -This family builds families dynamically. - -`standard` - +**rougail.__val2___dyn** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md index cc19f4095..e6b6b6d10 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.*val1*_dyn.var1**
**rougail.*val2*_dyn.var1**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Value is suffix.
**Default**: the value of the identifier | 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 ae5ff37f5..c8cd975f8 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.html +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.val1_dyn
rougail.val2_dyn +rougail.val1_dyn + +rougail.val2_dyn This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md index 971145771..90a2ef91b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*_dyn**
**rougail.*val2*_dyn**
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.*val1*_dyn**\ +> **rougail.*val2*_dyn**\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh index 788ae2a1e..377561dd3 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.val1_dyn -rougail.val2_dyn - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.val1_dyn +โ–Œ rougail.val2_dyn +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc index 6dbbcec82..8a19b36a2 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,46 +19,36 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A leadership +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.leadership** + -**rougail.dyn__val2__.leadership** - -This family contains lists of variable blocks. - +**rougail.dyn__val2__.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md index 5133db4fe..444931b52 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md @@ -1,24 +1,30 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
A leadership ->>> [!note] Informations -
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.dyn*val1*.leadership**\ +> **rougail.dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.dyn*val1*.leadership.leader**
**rougail.dyn*val2*.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.html b/tests/results/test_namespace/60_6family_dynamic_leadership.html index 918006156..b752cd043 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.html +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A leadership

-rougail.dynval1.leadership
rougail.dynval2.leadership +rougail.dynval1.leadership + +rougail.dynval2.leadership This family contains lists of variable blocks. diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.md b/tests/results/test_namespace/60_6family_dynamic_leadership.md index 166fb634a..09d1a386e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,22 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" ### A leadership - - -| Informations | -|:------------| -| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.leadership**\ +> **rougail.dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.sh b/tests/results/test_namespace/60_6family_dynamic_leadership.sh index b4f30bb2d..e8eda6680 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.sh @@ -1,54 +1,36 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var" A leadership - -rougail.dynval1.leadership -rougail.dynval2.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 cc29973ef..99b647edf 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 @@ -22,46 +19,36 @@ A suffix variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A leadership +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.leadership** + -**rougail.dyn__val2__.leadership** - -This family contains lists of variable blocks. - +**rougail.dyn__val2__.leadership** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md index ae1dd301f..0baf8f418 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,24 +1,30 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var)" +
A leadership ->>> [!note] Informations -
**rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.dyn*val1*.leadership**\ +> **rougail.dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.dyn*val1*.leadership.leader**
**rougail.dyn*val2*.leadership.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. | 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 0bf0bec96..7137c4a64 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,9 @@ This family builds families dynamically.

A leadership

-rougail.dynval1.leadership
rougail.dynval2.leadership +rougail.dynval1.leadership + +rougail.dynval2.leadership This family contains lists of variable blocks. diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md index c9997b196..518db46c9 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,22 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" ### A leadership - - -| Informations | -|:------------| -| **rougail.dyn*val1*.leadership**
**rougail.dyn*val2*.leadership**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.leadership**\ +> **rougail.dyn*val2*.leadership**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                                    | Description                                                                                                                 | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh index eda6e337c..2eec26296 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.sh @@ -1,54 +1,36 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var" A leadership - -rougail.dynval1.leadership -rougail.dynval2.leadership - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 77a254c4d..82d0723ee 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.adoc @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,74 +19,60 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value |==== ==== A Second dynamic variable +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + -**rougail.dyn__val2__.dyn___tval2__** - -This family builds families dynamically. - -`standard` - +**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" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md index 445ba9a03..dea9d378d 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,28 +1,37 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value |
A Second dynamic variable ->>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| | **rougail.dyn*val1*.dyn_*tval1*.var**
**rougail.dyn*val1*.dyn_*tval2*.var**
**rougail.dyn*val2*.dyn_*tval1*.var**
**rougail.dyn*val2*.dyn_*tval2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable dynamic.
**Default**: the value of the identifier | 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 92c12ab2b..428a5a58d 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -37,7 +37,13 @@ This family builds families dynamically.

A Second dynamic variable

-rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +rougail.dynval1.dyn_tval1 + +rougail.dynval1.dyn_tval2 + +rougail.dynval2.dyn_tval1 + +rougail.dynval2.dyn_tval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md index 5493c3dad..abba32e25 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md @@ -1,22 +1,23 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `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 | +| **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 - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +25,17 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: +> - the value of the variable "rougail.dyn*val1*.var" +> - the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh index 341a9fc9e..d7297a9ca 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -45,24 +31,19 @@ This family builds families dynamically. โ”‚  string   standard   mandatory    โ”‚ โ”‚ โ”‚ unique   multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A Second dynamic variable - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 77a254c4d..82d0723ee 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,74 +19,60 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value |==== ==== A Second dynamic variable +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + -**rougail.dyn__val2__.dyn___tval2__** - -This family builds families dynamically. - -`standard` - +**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" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md index 445ba9a03..dea9d378d 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,28 +1,37 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value |
A Second dynamic variable ->>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| | **rougail.dyn*val1*.dyn_*tval1*.var**
**rougail.dyn*val1*.dyn_*tval2*.var**
**rougail.dyn*val2*.dyn_*tval1*.var**
**rougail.dyn*val2*.dyn_*tval2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable dynamic.
**Default**: the value of the identifier | 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 92c12ab2b..428a5a58d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -37,7 +37,13 @@ This family builds families dynamically.

A Second dynamic variable

-rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +rougail.dynval1.dyn_tval1 + +rougail.dynval1.dyn_tval2 + +rougail.dynval2.dyn_tval1 + +rougail.dynval2.dyn_tval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md index 5493c3dad..a86b09367 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +25,15 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh index 341a9fc9e..d7297a9ca 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -45,24 +31,19 @@ This family builds families dynamically. โ”‚  string   standard   mandatory    โ”‚ โ”‚ โ”‚ unique   multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A Second dynamic variable - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 b0ddfe2ba..ed5648320 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,40 +19,35 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.__val1__** + -**rougail.__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== ==== A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.__val1__.__val1__** + **rougail.__val1__.__val2__** + **rougail.__val2__.__val1__** + -**rougail.__val2__.__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.__val2__.__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.__val1__.__val1__.var** + +| Variable | Description +| **rougail.__val1__.__val1__.var** + **rougail.__val1__.__val2__.var** + **rougail.__val2__.__val1__.var** + **rougail.__val2__.__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md index f37a96381..64e3cd3ca 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,24 +1,33 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.*val1***\ +> **rougail.*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" +
A dynamic family ->>> [!note] Informations -
**rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.*val1*.*val1***\ +> **rougail.*val1*.*val2***\ +> **rougail.*val2*.*val1***\ +> **rougail.*val2*.*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.*val1*.*val1*.var**
**rougail.*val1*.*val2*.var**
**rougail.*val2*.*val1*.var**
**rougail.*val2*.*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 bcf91a743..6dc29c83a 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.val1
rougail.val2 +rougail.val1 + +rougail.val2 This family builds families dynamically. @@ -28,7 +28,13 @@ This family builds families dynamically.

A dynamic family

-rougail.val1.val1
rougail.val1.val2
rougail.val2.val1
rougail.val2.val2 +rougail.val1.val1 + +rougail.val1.val2 + +rougail.val2.val1 + +rougail.val2.val2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md index eb4dc2966..6f5bbc401 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,25 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1***
**rougail.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.*val1***\ +> **rougail.*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" ### A dynamic family - - -| Informations | -|:------------| -| **rougail.*val1*.*val1***
**rougail.*val1*.*val2***
**rougail.*val2*.*val1***
**rougail.*val2*.*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.*val1*.*val1***\ +> **rougail.*val1*.*val2***\ +> **rougail.*val2*.*val1***\ +> **rougail.*val2*.*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh index 84157ebc2..0f7a8eee6 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -1,58 +1,39 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.val1 -rougail.val2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.val1 +โ–Œ rougail.val2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var" A dynamic family - -rougail.val1.val1 -rougail.val1.val2 -rougail.val2.val1 -rougail.val2.val2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.val1.val1 +โ–Œ rougail.val1.val2 +โ–Œ rougail.val2.val1 +โ–Œ rougail.val2.val2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.adoc index 58a479f4a..445050540 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 @@ -22,74 +19,60 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value |==== ==== A Second dynamic variable +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn___tval1__** + **rougail.dyn__val1__.dyn___tval2__** + **rougail.dyn__val2__.dyn___tval1__** + -**rougail.dyn__val2__.dyn___tval2__** - -This family builds families dynamically. - -`standard` - +**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" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md index af78db8e3..085a0de4c 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,28 +1,37 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A dynamic variable.
**Default**: add 't' to each var value |
A Second dynamic variable ->>> [!note] Informations -
**rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| | **rougail.dyn*val1*.dyn_*tval1*.var**
**rougail.dyn*val1*.dyn_*tval2*.var**
**rougail.dyn*val2*.dyn_*tval1*.var**
**rougail.dyn*val2*.dyn_*tval2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable dynamic.
**Default**: the value of the identifier | 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 57213183b..66696ea4d 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -37,7 +37,13 @@ This family builds families dynamically.

A Second dynamic variable

-rougail.dynval1.dyn_tval1
rougail.dynval1.dyn_tval2
rougail.dynval2.dyn_tval1
rougail.dynval2.dyn_tval2 +rougail.dynval1.dyn_tval1 + +rougail.dynval1.dyn_tval2 + +rougail.dynval2.dyn_tval1 + +rougail.dynval2.dyn_tval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md index 626ecb33d..bad4825f6 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +25,15 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*tval1***
**rougail.dyn*val1*.dyn_*tval2***
**rougail.dyn*val2*.dyn_*tval1***
**rougail.dyn*val2*.dyn_*tval2***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn_*tval1***\ +> **rougail.dyn*val1*.dyn_*tval2***\ +> **rougail.dyn*val2*.dyn_*tval1***\ +> **rougail.dyn*val2*.dyn_*tval2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh index bbb1db1fa..7eb2aee2e 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -45,24 +31,19 @@ This family builds families dynamically. โ”‚  string   standard   mandatory    โ”‚ โ”‚ โ”‚ unique   multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A Second dynamic variable - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 a57b4f076..97448e349 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Default**: * val1 @@ -22,65 +19,51 @@ A identifier variable. + === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`standard` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`standard` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A dynamic variable. |==== ==== A Second dynamic variable +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn___example__** + -**rougail.dyn__val2__.dyn___example__** - -This family builds families dynamically. - -`standard` - +**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" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.dyn___example__.var** + +| **rougail.dyn__val1__.dyn___example__.var** + **rougail.dyn__val2__.dyn___example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifier** + +| **rougail.dyn__val1__.dyn___example__.var_identifier** + **rougail.dyn__val2__.dyn___example__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifiers** + +| **rougail.dyn__val1__.dyn___example__.var_identifiers** + **rougail.dyn__val2__.dyn___example__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md index b6c538e81..33990b6e4 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,28 +1,35 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "[`A identifier variable`](#rougail.var)" + | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.var**
**rougail.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A dynamic variable. |
A Second dynamic variable ->>> [!note] Informations -
**rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn_*example***\ +> **rougail.dyn*val2*.dyn_*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val1*.var)"
- the value of the variable "[`A dynamic variable`](#rougail.dyn*val2*.var)" + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------| | **rougail.dyn*val1*.dyn_*example*.var**
**rougail.dyn*val2*.dyn_*example*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable dynamic.
**Default**: the value of the identifier | 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 8d044607f..e565c06a5 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -18,7 +16,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -37,7 +37,9 @@ This family builds families dynamically.

A Second dynamic variable

-rougail.dynval1.dyn_example
rougail.dynval2.dyn_example +rougail.dynval1.dyn_example + +rougail.dynval2.dyn_example This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md index a177a6ef7..35d4eeb05 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`standard`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -24,11 +25,13 @@ ### A Second dynamic variable - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn_*example***
**rougail.dyn*val2*.dyn_*example***
This family builds families dynamically.
`standard`
**Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn_*example***\ +> **rougail.dyn*val2*.dyn_*example***\ +> This family builds families dynamically.\ +> `standard`\ +> **Identifiers**:
- the value of the variable "rougail.dyn*val1*.var"
- the value of the variable "rougail.dyn*val2*.var" | Variable                                                                                                           | Description                                                                                                        | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh index 2079a2859..15d24b772 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.sh @@ -1,41 +1,27 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - standard  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  standard  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -45,22 +31,17 @@ This family builds families dynamically. โ”‚  string   standard   unique    โ”‚ โ”‚ โ”‚ multiple  โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A Second dynamic variable - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 d44169a90..4bd331244 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,51 +19,43 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== ==== dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn__val1__** + **rougail.dyn__val1__.dyn__val2__** + **rougail.dyn__val2__.dyn__val1__** + -**rougail.dyn__val2__.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md index 7739347cd..9ec3b347e 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,24 +1,33 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn*val1***\ +> **rougail.dyn*val1*.dyn*val2***\ +> **rougail.dyn*val2*.dyn*val1***\ +> **rougail.dyn*val2*.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 41220b42e..bd809184f 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,13 @@ This family builds families dynamically.

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

-rougail.dynval1.dynval1
rougail.dynval1.dynval2
rougail.dynval2.dynval1
rougail.dynval2.dynval2 +rougail.dynval1.dynval1 + +rougail.dynval1.dynval2 + +rougail.dynval2.dynval1 + +rougail.dynval2.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md index a12858a8b..cfc650c9b 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,25 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" ### dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn*val1***\ +> **rougail.dyn*val1*.dyn*val2***\ +> **rougail.dyn*val2*.dyn*val1***\ +> **rougail.dyn*val2*.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh index c2a2001e6..ddff873e5 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.sh @@ -1,58 +1,39 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var1" dynval1 or dynval2 - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  โ”ƒ @@ -70,9 +51,9 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.dynval1.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.adoc index 5124b49dd..9c691d6fd 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 @@ -1,19 +1,16 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 @@ -22,51 +19,43 @@ A suffix variable. + === dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== ==== dyn__val1__ or dyn__val2__ +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__.dyn__val1__** + **rougail.dyn__val1__.dyn__val2__** + **rougail.dyn__val2__.dyn__val1__** + -**rougail.dyn__val2__.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var1" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md index fcd5eb2e0..47e794c81 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,24 +1,33 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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* ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" +
dyn*val1* or dyn*val2* ->>> [!note] Informations -
**rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" ->>> +> [!note] Informations +> **rougail.dyn*val1*.dyn*val1***\ +> **rougail.dyn*val1*.dyn*val2***\ +> **rougail.dyn*val2*.dyn*val1***\ +> **rougail.dyn*val2*.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A suffix variable`](#rougail.var1)" + | Variable | Description | |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.dyn*val1*.var**
**rougail.dyn*val1*.dyn*val2*.var**
**rougail.dyn*val2*.dyn*val1*.var**
**rougail.dyn*val2*.dyn*val2*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 7015bd6a6..3586dc9fb 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 @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -18,7 +16,9 @@

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

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. @@ -28,7 +28,13 @@ This family builds families dynamically.

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

-rougail.dynval1.dynval1
rougail.dynval1.dynval2
rougail.dynval2.dynval1
rougail.dynval2.dynval2 +rougail.dynval1.dynval1 + +rougail.dynval1.dynval2 + +rougail.dynval2.dynval1 + +rougail.dynval2.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md index 23d95304c..11ded4bab 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,19 +11,25 @@ ## dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" ### dyn*val1* or dyn*val2* - - -| Informations | -|:------------| -| **rougail.dyn*val1*.dyn*val1***
**rougail.dyn*val1*.dyn*val2***
**rougail.dyn*val2*.dyn*val1***
**rougail.dyn*val2*.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var1" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1*.dyn*val1***\ +> **rougail.dyn*val1*.dyn*val2***\ +> **rougail.dyn*val2*.dyn*val1***\ +> **rougail.dyn*val2*.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var1" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh index 57241821b..3f8687ec3 100644 --- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.sh @@ -1,58 +1,39 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dynval1 or dynval2 - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var1" - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.dynval1 +โ–Œ rougail.dynval2 +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var1" dynval1 or dynval2 - -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" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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  โ”ƒ @@ -70,9 +51,9 @@ This family builds families dynamically. โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace/60_9extra_dynamic.adoc b/tests/results/test_namespace/60_9extra_dynamic.adoc index 2e0667df7..ae93d7935 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.adoc +++ b/tests/results/test_namespace/60_9extra_dynamic.adoc @@ -1,50 +1,43 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a |==== -== Variables for "Extra" +== Extra -**extra** +==== +**๐Ÿ›ˆ Informations** +**extra** + `basic` - - - +==== === dyn___a__ +==== +**๐Ÿ›ˆ Informations** -**extra.dyn___a__** - -This family builds families dynamically. - -`basic` - +**extra.dyn___a__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md index 3dfd58f25..9e618f994 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md @@ -1,10 +1,9 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- a | @@ -13,16 +12,18 @@
Extra ->>> [!note] Informations -**extra**
`basic` +> [!note] Informations +> **extra**\ +> `basic` - ->>>
dyn_*a* ->>> [!note] Informations -
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#rougail.var)" ->>> +> [!note] Informations +> **extra.dyn_*a***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **extra.dyn_*a*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test_namespace/60_9extra_dynamic.html b/tests/results/test_namespace/60_9extra_dynamic.html index 28b4fd5d5..44455acd9 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.html +++ b/tests/results/test_namespace/60_9extra_dynamic.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -
Variable Description
@@ -15,14 +13,12 @@
Variable Description
-

Variables for "Extra"

+

Extra

extra basic - -

dyn_<i>a</i>

extra.dyn_a diff --git a/tests/results/test_namespace/60_9extra_dynamic.md b/tests/results/test_namespace/60_9extra_dynamic.md index 41ebccbfe..92dde9841 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.md +++ b/tests/results/test_namespace/60_9extra_dynamic.md @@ -1,30 +1,29 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.
**Default**:
- a | -# Variables for "Extra" - -**extra** - -`basic` - +# Extra +> **๐Ÿ›ˆ Informations** +> +> **extra**\ +> `basic` ## dyn_*a* - - -| Informations | -|:------------| -| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **extra.dyn_*a***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "rougail.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic.sh b/tests/results/test_namespace/60_9extra_dynamic.sh index ab272a707..caf67a2bf 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.sh +++ b/tests/results/test_namespace/60_9extra_dynamic.sh @@ -1,56 +1,33 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +Extra - -Variables for "Extra" - - - -extra - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra +โ–Œ  basic  dyn_a - -extra.dyn_a - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra.dyn_a +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "rougail.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc index 73804af54..650abbc8e 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.adoc +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.adoc @@ -1,47 +1,42 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `standard` - - - +==== === Gรฉnรฉral +==== +**๐Ÿ›ˆ Informations** -**rougail.general** - +**rougail.general** + `standard` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.varname** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -No change. + +| **rougail.general.varname** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | No change. + **Default**: * a |==== -== Variables for "Extra" +== Extra -**extra** +==== +**๐Ÿ›ˆ Informations** +**extra** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **extra.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a @@ -49,22 +44,18 @@ A variable. + === dyn___a__ +==== +**๐Ÿ›ˆ Informations** -**extra.dyn___a__** - -This family builds families dynamically. - -`basic` - +**extra.dyn___a__** + +This family builds families dynamically. + +`basic` + **Identifiers**: the value of the variable "extra.var" - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md index c5ab7df02..6502e0efe 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md @@ -1,15 +1,15 @@
Rougail ->>> [!note] Informations -**rougail**
`standard` +> [!note] Informations +> **rougail**\ +> `standard` - ->>>
Gรฉnรฉral ->>> [!note] Informations -
**rougail.general**
`standard` ->>> +> [!note] Informations +> **rougail.general**\ +> `standard` + | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------| | **rougail.general.varname**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | No change.
**Default**:
- a | @@ -20,20 +20,22 @@
Extra ->>> [!note] Informations -**extra**
`basic` +> [!note] Informations +> **extra**\ +> `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* ->>> [!note] Informations -
**extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "[`A variable`](#extra.var)" ->>> +> [!note] Informations +> **extra.dyn_*a***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "[`A variable`](#extra.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **extra.dyn_*a*.var**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | | diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.html b/tests/results/test_namespace/60_9extra_dynamic_extra.html index 65241d704..1dd1f63b7 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.html +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail standard - -

Gรฉnรฉral

rougail.general @@ -21,14 +19,12 @@ -

Variables for "Extra"

+

Extra

extra basic - - diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.md b/tests/results/test_namespace/60_9extra_dynamic_extra.md index 1eb0db102..789cf9758 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.md @@ -1,30 +1,27 @@ -# Variables for "Rougail" - -**rougail** - -`standard` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `standard` ## Gรฉnรฉral - - -| Informations | -|:------------| -| **rougail.general**
`standard` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.general**\ +> `standard` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **rougail.general.varname**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | No change.
**Default**:
- a | -# Variables for "Extra" - -**extra** - -`basic` - +# Extra +> **๐Ÿ›ˆ Informations** +> +> **extra**\ +> `basic` | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -32,11 +29,12 @@ ## dyn_*a* - - -| Informations | -|:------------| -| **extra.dyn_*a***
This family builds families dynamically.
`basic`
**Identifiers**: the value of the variable "extra.var" | +> **๐Ÿ›ˆ Informations** +> +> **extra.dyn_*a***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**: the value of the variable "extra.var" | Variable                                                                                                                       | Description                                                                                                                    | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.sh b/tests/results/test_namespace/60_9extra_dynamic_extra.sh index 4a29b29b0..41302afc9 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.sh @@ -1,74 +1,48 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - standard  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  standard  Gรฉnรฉral - -rougail.general - - standard  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.general +โ–Œ  standard  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.varname โ”‚ No change. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +Extra - -Variables for "Extra" - - - -extra - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ extra.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - dyn_a - -extra.dyn_a - -This family builds families dynamically. - - basic  - -Identifiers: the value of the variable "extra.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ extra.dyn_a +โ–Œ This family builds families dynamically. +โ–Œ  basic  +โ–Œ Identifiers: the value of the variable "extra.var" โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc index cd0f429b2..061faaf3e 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.adoc @@ -1,45 +1,38 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + **Default**: val2 |==== === A dynamic family +==== +**๐Ÿ›ˆ Informations** **rougail.dyn__val1__** + -**rougail.dyn__val2__** - -This family builds families dynamically. - -`basic` - +**rougail.dyn__val2__** + +This family builds families dynamically. + +`basic` + **Identifiers**: * val1 * the value of the variable "rougail.var" - +==== [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md index 0311f8de2..c4b1ca8bb 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,19 +1,22 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `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 ->>> [!note] Informations -
**rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" ->>> +> [!note] Informations +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- the value of the variable "[`A suffix variable`](#rougail.var)" + | Variable | Description | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------| | **rougail.dyn*val1*.vardyn**
**rougail.dyn*val2*.vardyn**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. | 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 2e13b6a98..25c99031f 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.html +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -
Variable Description
@@ -17,7 +15,9 @@

A dynamic family

-rougail.dynval1
rougail.dynval2 +rougail.dynval1 + +rougail.dynval2 This family builds families dynamically. diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.md index 46a306a2a..c379378f3 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.md @@ -1,10 +1,9 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +11,13 @@ ## A dynamic family - - -| Informations | -|:------------| -| **rougail.dyn*val1***
**rougail.dyn*val2***
This family builds families dynamically.
`basic`
**Identifiers**:
- val1
- the value of the variable "rougail.var" | +> **๐Ÿ›ˆ Informations** +> +> **rougail.dyn*val1***\ +> **rougail.dyn*val2***\ +> This family builds families dynamically.\ +> `basic`\ +> **Identifiers**:
- val1
- the value of the variable "rougail.var" | Variable                                                                                                   | Description                                                                                                | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh index d32273e98..373d41961 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.sh @@ -1,18 +1,9 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ @@ -20,22 +11,17 @@ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - - A dynamic family - -rougail.dynval1 -rougail.dynval2 - -This family builds families dynamically. - - basic  - -Identifiers: -- val1 -- the value of the variable "rougail.var" - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ 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 9486324e0..6d949bcbf 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.adoc +++ b/tests/results/test_namespace/68_0family_leadership_mode.adoc @@ -1,37 +1,28 @@ -== Variables for "Rougail" +== Rougail -**rougail** +==== +**๐Ÿ›ˆ Informations** +**rougail** + `basic` - - - +==== === A leadership +==== +**๐Ÿ›ˆ Informations** -**rougail.leader** - -This family contains lists of variable blocks. - +**rougail.leader** + +This family contains lists of variable blocks. + `basic` - +==== [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md index d878f6f39..55101ac32 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md @@ -1,15 +1,16 @@
Rougail ->>> [!note] Informations -**rougail**
`basic` +> [!note] Informations +> **rougail**\ +> `basic` - ->>>
A leadership ->>> [!note] Informations -
**rougail.leader**
This family contains lists of variable blocks.
`basic` ->>> +> [!note] Informations +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` + | Variable | Description | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------| | **rougail.leader.leader**
[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `unique` `multiple` | A leader. | diff --git a/tests/results/test_namespace/68_0family_leadership_mode.html b/tests/results/test_namespace/68_0family_leadership_mode.html index dc80aa503..6a41a90c7 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.html +++ b/tests/results/test_namespace/68_0family_leadership_mode.html @@ -1,11 +1,9 @@ -

Variables for "Rougail"

+

Rougail

rougail basic - -

A leadership

rougail.leader diff --git a/tests/results/test_namespace/68_0family_leadership_mode.md b/tests/results/test_namespace/68_0family_leadership_mode.md index 44ed0123a..5ae715900 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.md @@ -1,18 +1,17 @@ -# Variables for "Rougail" - -**rougail** - -`basic` - +# Rougail +> **๐Ÿ›ˆ Informations** +> +> **rougail**\ +> `basic` ## A leadership - - -| Informations | -|:------------| -| **rougail.leader**
This family contains lists of variable blocks.
`basic` | +> **๐Ÿ›ˆ Informations** +> +> **rougail.leader**\ +> This family contains lists of variable blocks.\ +> `basic` | Variable                                                                                                        | Description                                                                                                     | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/tests/results/test_namespace/68_0family_leadership_mode.sh b/tests/results/test_namespace/68_0family_leadership_mode.sh index 48864bdad..e9d10eb5c 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.sh +++ b/tests/results/test_namespace/68_0family_leadership_mode.sh @@ -1,30 +1,17 @@ +Rougail - -Variables for "Rougail" - - - -rougail - - - - basic  - - - - - - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail +โ–Œ  basic  A leadership - -rougail.leader - -This family contains lists of variable blocks. - - basic  - +โ–Œ ๐Ÿ›ˆ Informations +โ–Œ  +โ–Œ rougail.leader +โ–Œ This family contains lists of variable blocks. +โ–Œ  basic  โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ diff --git a/tests/results/test_namespace_examples/00_0version_underscore.adoc b/tests/results/test_namespace_examples/00_0version_underscore.adoc index b4103a641..3700fc3dd 100644 --- a/tests/results/test_namespace_examples/00_0version_underscore.adoc +++ b/tests/results/test_namespace_examples/00_0version_underscore.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - version: example # A variable +rougail: + version: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - version: example # A variable +rougail: + version: example ---- diff --git a/tests/results/test_namespace_examples/00_0version_underscore.gitlab.md b/tests/results/test_namespace_examples/00_0version_underscore.gitlab.md index 97250d7a6..ba849998d 100644 --- a/tests/results/test_namespace_examples/00_0version_underscore.gitlab.md +++ b/tests/results/test_namespace_examples/00_0version_underscore.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - version: example # A variable +rougail: + version: example ```
@@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - version: example # A variable +rougail: + version: example ```
diff --git a/tests/results/test_namespace_examples/00_0version_underscore.html b/tests/results/test_namespace_examples/00_0version_underscore.html index ce50764b1..dcc00c708 100644 --- a/tests/results/test_namespace_examples/00_0version_underscore.html +++ b/tests/results/test_namespace_examples/00_0version_underscore.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  version: example            # A variable

Example with all variables modifiable

+
rougail:
+  version: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  version: example            # A variable
\ No newline at end of file +
rougail:
+  version: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_0version_underscore.sh b/tests/results/test_namespace_examples/00_0version_underscore.sh index d0bcc6730..c7730d073 100644 --- a/tests/results/test_namespace_examples/00_0version_underscore.sh +++ b/tests/results/test_namespace_examples/00_0version_underscore.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - version: example # A variable  - - +rougail:  + version: example  Example with all variables modifiable - ---  -rougail: # Rougail  - version: example # A variable  +rougail:  + version: example  diff --git a/tests/results/test_namespace_examples/00_1empty_variable.adoc b/tests/results/test_namespace_examples/00_1empty_variable.adoc index aad1287da..296a49c40 100644 --- a/tests/results/test_namespace_examples/00_1empty_variable.adoc +++ b/tests/results/test_namespace_examples/00_1empty_variable.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail +rougail: empty: example ---- == Example with all variables modifiable @@ -11,6 +11,6 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail +rougail: empty: example ---- diff --git a/tests/results/test_namespace_examples/00_1empty_variable.gitlab.md b/tests/results/test_namespace_examples/00_1empty_variable.gitlab.md index afe9c4a01..eb47b2a45 100644 --- a/tests/results/test_namespace_examples/00_1empty_variable.gitlab.md +++ b/tests/results/test_namespace_examples/00_1empty_variable.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -rougail: # Rougail +rougail: empty: example ``` @@ -11,7 +11,7 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail +rougail: empty: example ``` diff --git a/tests/results/test_namespace_examples/00_1empty_variable.html b/tests/results/test_namespace_examples/00_1empty_variable.html index 41eed4bdc..c6de2b067 100644 --- a/tests/results/test_namespace_examples/00_1empty_variable.html +++ b/tests/results/test_namespace_examples/00_1empty_variable.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
+
rougail:
   empty: example

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   empty: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_1empty_variable.sh b/tests/results/test_namespace_examples/00_1empty_variable.sh index 2d0635100..7533569fd 100644 --- a/tests/results/test_namespace_examples/00_1empty_variable.sh +++ b/tests/results/test_namespace_examples/00_1empty_variable.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  +rougail:   empty: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  +rougail:   empty: example  diff --git a/tests/results/test_namespace_examples/00_2default_calculated.adoc b/tests/results/test_namespace_examples/00_2default_calculated.adoc index 482135226..c342c23ad 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: no # A first variable - var2: # A second variable +rougail: + var1: no + var2: - no ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated.gitlab.md index 9645700b5..d37e51349 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: no # A first variable - var2: # A second variable +rougail: + var1: no + var2: - no ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated.html b/tests/results/test_namespace_examples/00_2default_calculated.html index d8ff58876..7dde63964 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated.html +++ b/tests/results/test_namespace_examples/00_2default_calculated.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2:                       # A second variable
+
rougail:
+  var1: no
+  var2:
     - no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated.sh b/tests/results/test_namespace_examples/00_2default_calculated.sh index e727e2fe9..2e001e8dd 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A first variable  - var2: # A second variable  +rougail:  + var1: no  + var2:   - no  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_multi.adoc b/tests/results/test_namespace_examples/00_2default_calculated_multi.adoc index 1f563a2a9..baff7009b 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_multi.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_multi.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - no - yes - maybe - var2: # A second variable + var2: - no - yes - maybe diff --git a/tests/results/test_namespace_examples/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_multi.gitlab.md index 304f993c1..8274dea8d 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_multi.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_multi.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - no - yes - maybe - var2: # A second variable + var2: - no - yes - maybe diff --git a/tests/results/test_namespace_examples/00_2default_calculated_multi.html b/tests/results/test_namespace_examples/00_2default_calculated_multi.html index f39a498e1..5fcf6a2a4 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_multi.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_multi.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A first variable
+
rougail:
+  var1:
     - no
     - yes
     - maybe
-  var2:                       # A second variable
+  var2:
     - no
     - yes
     - maybe
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_multi.sh b/tests/results/test_namespace_examples/00_2default_calculated_multi.sh index 24dc7531e..b53c93700 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_multi.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_multi.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A first variable  +rougail:  + var1:   - no   - yes   - maybe  - var2: # A second variable  + var2:   - no   - yes   - maybe  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.adoc b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.adoc index deebb9de1..161f614e9 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var2: a_value # A second variable +rougail: + var2: a_value ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.gitlab.md index 8cde5a5a1..bbbd3d64e 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: a_value # A second variable +rougail: + var2: a_value ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.html b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.html index 88b1c40d2..36840dd53 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var2: a_value               # A second variable
\ No newline at end of file +
rougail:
+  var2: a_value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.sh index 4346814b0..86fc92a5d 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_params_permissive.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var2: a_value # A second variable  +rougail:  + var2: a_value  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable.adoc b/tests/results/test_namespace_examples/00_2default_calculated_variable.adoc index 31d7d7731..498316b5c 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net ---- == Example with all variables modifiable @@ -12,9 +12,9 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net - var2: # A second variable + var2: - example.net ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_variable.gitlab.md index e45a71bae..247c32831 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net - var2: # A second variable + var2: - example.net ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable.html b/tests/results/test_namespace_examples/00_2default_calculated_variable.html index a25e1ee2e..6aa01a627 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1:                       # A first variable
+
rougail:
+  var1:
     - example.net

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A first variable
+
rougail:
+  var1:
     - example.net
-  var2:                       # A second variable
+  var2:
     - example.net
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable.sh b/tests/results/test_namespace_examples/00_2default_calculated_variable.sh index 332a521c7..8d8b888bf 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: # A first variable  +rougail:  + var1:   - example.net  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A first variable  +rougail:  + var1:   - example.net  - var2: # A second variable  + var2:   - example.net  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.adoc b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.adoc index f2be9ae13..ca248e479 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.gitlab.md index be9fe90f6..f0182cd76 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.html b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.html index 4671f759b..0b0370b58 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A first variable

Example with all variables modifiable

+
rougail:
+  var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.sh index f73e92b95..5950dc76b 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A first variable  - - +rougail:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.adoc index a82c96b1a..60649a2bc 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var3: example # A new variable +rougail: + var1: example + var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable - var3: example # A new variable +rougail: + var1: example + var2: example + var3: example ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.gitlab.md index 58d11e900..00e62d34b 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # A first variable - var3: example # A new variable +rougail: + var1: example + var3: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable - var3: example # A new variable +rougail: + var1: example + var2: example + var3: example ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.html b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.html index 6b9d2c2a1..20c6e45f2 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var3: example               # A new variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var2: example               # A second variable
-  var3: example               # A new variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
+  var3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.sh index a03065494..4e857cc0d 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_description_multi_line.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A first variable  - var3: example # A new variable  - - +rougail:  + var1: example  + var3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A first variable  - var2: example # A second variable  - var3: example # A new variable  +rougail:  + var1: example  + var2: example  + var3: example  diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.adoc b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.adoc index 31d7d7731..498316b5c 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net ---- == Example with all variables modifiable @@ -12,9 +12,9 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net - var2: # A second variable + var2: - example.net ---- diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.gitlab.md index e45a71bae..247c32831 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.gitlab.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A first variable +rougail: + var1: - example.net - var2: # A second variable + var2: - example.net ``` diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.html b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.html index a25e1ee2e..6aa01a627 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.html +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1:                       # A first variable
+
rougail:
+  var1:
     - example.net

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A first variable
+
rougail:
+  var1:
     - example.net
-  var2:                       # A second variable
+  var2:
     - example.net
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.sh index 332a521c7..8d8b888bf 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: # A first variable  +rougail:  + var1:   - example.net  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A first variable  +rougail:  + var1:   - example.net  - var2: # A second variable  + var2:   - example.net  diff --git a/tests/results/test_namespace_examples/00_4load_subfolder.adoc b/tests/results/test_namespace_examples/00_4load_subfolder.adoc index e12651f5d..4dd3bf50c 100644 --- a/tests/results/test_namespace_examples/00_4load_subfolder.adoc +++ b/tests/results/test_namespace_examples/00_4load_subfolder.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A variable - var2: example # A variable +rougail: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A variable - var2: example # A variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_examples/00_4load_subfolder.gitlab.md index 749025a1e..e0fd12138 100644 --- a/tests/results/test_namespace_examples/00_4load_subfolder.gitlab.md +++ b/tests/results/test_namespace_examples/00_4load_subfolder.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # A variable - var2: example # A variable +rougail: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A variable - var2: example # A variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_4load_subfolder.html b/tests/results/test_namespace_examples/00_4load_subfolder.html index 77ac8e103..8324ee308 100644 --- a/tests/results/test_namespace_examples/00_4load_subfolder.html +++ b/tests/results/test_namespace_examples/00_4load_subfolder.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A variable
-  var2: example               # A variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A variable
-  var2: example               # A variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_4load_subfolder.sh b/tests/results/test_namespace_examples/00_4load_subfolder.sh index 9382c2473..3144faa0c 100644 --- a/tests/results/test_namespace_examples/00_4load_subfolder.sh +++ b/tests/results/test_namespace_examples/00_4load_subfolder.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A variable  - var2: example # A variable  - - +rougail:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A variable  - var2: example # A variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_5load_notype.adoc b/tests/results/test_namespace_examples/00_5load_notype.adoc index f06265e8d..fa261d3c9 100644 --- a/tests/results/test_namespace_examples/00_5load_notype.adoc +++ b/tests/results/test_namespace_examples/00_5load_notype.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - without_type: non # A variable +rougail: + without_type: non ---- diff --git a/tests/results/test_namespace_examples/00_5load_notype.gitlab.md b/tests/results/test_namespace_examples/00_5load_notype.gitlab.md index aad73d6c2..5833845a4 100644 --- a/tests/results/test_namespace_examples/00_5load_notype.gitlab.md +++ b/tests/results/test_namespace_examples/00_5load_notype.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - without_type: non # A variable +rougail: + without_type: non ``` diff --git a/tests/results/test_namespace_examples/00_5load_notype.html b/tests/results/test_namespace_examples/00_5load_notype.html index e897d6ae7..b78ddfd98 100644 --- a/tests/results/test_namespace_examples/00_5load_notype.html +++ b/tests/results/test_namespace_examples/00_5load_notype.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  without_type: non           # A variable
\ No newline at end of file +
rougail:
+  without_type: non
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_5load_notype.sh b/tests/results/test_namespace_examples/00_5load_notype.sh index e143e6970..d0dc64dfb 100644 --- a/tests/results/test_namespace_examples/00_5load_notype.sh +++ b/tests/results/test_namespace_examples/00_5load_notype.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - without_type: non # A variable  +rougail:  + without_type: non  diff --git a/tests/results/test_namespace_examples/00_6boolean.adoc b/tests/results/test_namespace_examples/00_6boolean.adoc index d7792e034..ca8f07e62 100644 --- a/tests/results/test_namespace_examples/00_6boolean.adoc +++ b/tests/results/test_namespace_examples/00_6boolean.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: true # The first variable - var2: true # The second variable - var3: true # The third variable - var4: false # The forth variable - var5: false # The fifth variable - var6: false # The sixth variable +rougail: + var1: true + var2: true + var3: true + var4: false + var5: false + var6: false ---- diff --git a/tests/results/test_namespace_examples/00_6boolean.gitlab.md b/tests/results/test_namespace_examples/00_6boolean.gitlab.md index 5e8f908a9..0cc23730e 100644 --- a/tests/results/test_namespace_examples/00_6boolean.gitlab.md +++ b/tests/results/test_namespace_examples/00_6boolean.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - var1: true # The first variable - var2: true # The second variable - var3: true # The third variable - var4: false # The forth variable - var5: false # The fifth variable - var6: false # The sixth variable +rougail: + var1: true + var2: true + var3: true + var4: false + var5: false + var6: false ``` diff --git a/tests/results/test_namespace_examples/00_6boolean.html b/tests/results/test_namespace_examples/00_6boolean.html index ec86f406d..8f30e2729 100644 --- a/tests/results/test_namespace_examples/00_6boolean.html +++ b/tests/results/test_namespace_examples/00_6boolean.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: true                  # The first variable
-  var2: true                  # The second variable
-  var3: true                  # The third variable
-  var4: false                 # The forth variable
-  var5: false                 # The fifth variable
-  var6: false                 # The sixth variable
\ No newline at end of file +
rougail:
+  var1: true
+  var2: true
+  var3: true
+  var4: false
+  var5: false
+  var6: false
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6boolean.sh b/tests/results/test_namespace_examples/00_6boolean.sh index c5e490be5..b08e1ad5d 100644 --- a/tests/results/test_namespace_examples/00_6boolean.sh +++ b/tests/results/test_namespace_examples/00_6boolean.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: true # The first variable  - var2: true # The second variable  - var3: true # The third variable  - var4: false # The forth variable  - var5: false # The fifth variable  - var6: false # The sixth variable  +rougail:  + var1: true  + var2: true  + var3: true  + var4: false  + var5: false  + var6: false  diff --git a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.adoc b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.adoc index c75638c5e..503cc1682 100644 --- a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: true # A variable +rougail: + variable: true ---- diff --git a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.gitlab.md index 9c9cbc60c..dc2a75a1f 100644 --- a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.gitlab.md +++ b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: true # A variable +rougail: + variable: true ``` diff --git a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.html b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.html index 80469d915..2b28c2da9 100644 --- a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.html +++ b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: true              # A variable
\ No newline at end of file +
rougail:
+  variable: true
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.sh index 20e7056cb..04eaa3304 100644 --- a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.sh +++ b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: true # A variable  +rougail:  + variable: true  diff --git a/tests/results/test_namespace_examples/00_6choice.adoc b/tests/results/test_namespace_examples/00_6choice.adoc index 6d0d422d1..d2d2707ce 100644 --- a/tests/results/test_namespace_examples/00_6choice.adoc +++ b/tests/results/test_namespace_examples/00_6choice.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable +rougail: + var1: a_choice + var2: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable - var3: a_choice # The third variable - var4: a_choice # The forth variable - var5: a # The fifth variable - var6: 1 # The sixth variable +rougail: + var1: a_choice + var2: a_choice + var3: a_choice + var4: a_choice + var5: a + var6: 1 ---- diff --git a/tests/results/test_namespace_examples/00_6choice.gitlab.md b/tests/results/test_namespace_examples/00_6choice.gitlab.md index dd79e6bac..9176e9cf2 100644 --- a/tests/results/test_namespace_examples/00_6choice.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable +rougail: + var1: a_choice + var2: a_choice ``` @@ -12,13 +12,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable - var3: a_choice # The third variable - var4: a_choice # The forth variable - var5: a # The fifth variable - var6: 1 # The sixth variable +rougail: + var1: a_choice + var2: a_choice + var3: a_choice + var4: a_choice + var5: a + var6: 1 ``` diff --git a/tests/results/test_namespace_examples/00_6choice.html b/tests/results/test_namespace_examples/00_6choice.html index 865be45c0..bfeab5db0 100644 --- a/tests/results/test_namespace_examples/00_6choice.html +++ b/tests/results/test_namespace_examples/00_6choice.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: a_choice              # The first variable
-  var2: a_choice              # The second variable

Example with all variables modifiable

+
rougail:
+  var1: a_choice
+  var2: a_choice

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: a_choice              # The first variable
-  var2: a_choice              # The second variable
-  var3: a_choice              # The third variable
-  var4: a_choice              # The forth variable
-  var5: a                     # The fifth variable
-  var6: 1                     # The sixth variable
\ No newline at end of file +
rougail:
+  var1: a_choice
+  var2: a_choice
+  var3: a_choice
+  var4: a_choice
+  var5: a
+  var6: 1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice.sh b/tests/results/test_namespace_examples/00_6choice.sh index 0b23b3c43..1cf10b5df 100644 --- a/tests/results/test_namespace_examples/00_6choice.sh +++ b/tests/results/test_namespace_examples/00_6choice.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: a_choice # The first variable  - var2: a_choice # The second variable  - - +rougail:  + var1: a_choice  + var2: a_choice  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: a_choice # The first variable  - var2: a_choice # The second variable  - var3: a_choice # The third variable  - var4: a_choice # The forth variable  - var5: a # The fifth variable  - var6: 1 # The sixth variable  +rougail:  + var1: a_choice  + var2: a_choice  + var3: a_choice  + var4: a_choice  + var5: a  + var6: 1  diff --git a/tests/results/test_namespace_examples/00_6choice_calculation.adoc b/tests/results/test_namespace_examples/00_6choice_calculation.adoc index 4e39cd408..44fabe0d0 100644 --- a/tests/results/test_namespace_examples/00_6choice_calculation.adoc +++ b/tests/results/test_namespace_examples/00_6choice_calculation.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ---- diff --git a/tests/results/test_namespace_examples/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_examples/00_6choice_calculation.gitlab.md index ff853dfde..6b3020aa8 100644 --- a/tests/results/test_namespace_examples/00_6choice_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ``` diff --git a/tests/results/test_namespace_examples/00_6choice_calculation.html b/tests/results/test_namespace_examples/00_6choice_calculation.html index 79ed489b1..2849e2cca 100644 --- a/tests/results/test_namespace_examples/00_6choice_calculation.html +++ b/tests/results/test_namespace_examples/00_6choice_calculation.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: 9                      # A variable
\ No newline at end of file +
rougail:
+  var: 9
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice_calculation.sh b/tests/results/test_namespace_examples/00_6choice_calculation.sh index b89e54313..38f60c29e 100644 --- a/tests/results/test_namespace_examples/00_6choice_calculation.sh +++ b/tests/results/test_namespace_examples/00_6choice_calculation.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: 9 # A variable  +rougail:  + var: 9  diff --git a/tests/results/test_namespace_examples/00_6choice_link.adoc b/tests/results/test_namespace_examples/00_6choice_link.adoc index 24e4ef192..77fe54433 100644 --- a/tests/results/test_namespace_examples/00_6choice_link.adoc +++ b/tests/results/test_namespace_examples/00_6choice_link.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var1: a_choice # The first variable +rougail: + var1: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable +rougail: + var1: a_choice + var2: a_choice ---- diff --git a/tests/results/test_namespace_examples/00_6choice_link.gitlab.md b/tests/results/test_namespace_examples/00_6choice_link.gitlab.md index 00c4138f3..4a50f7240 100644 --- a/tests/results/test_namespace_examples/00_6choice_link.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice_link.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: a_choice # The first variable +rougail: + var1: a_choice ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: a_choice # The first variable - var2: a_choice # The second variable +rougail: + var1: a_choice + var2: a_choice ``` diff --git a/tests/results/test_namespace_examples/00_6choice_link.html b/tests/results/test_namespace_examples/00_6choice_link.html index 06d93822b..2d11003a6 100644 --- a/tests/results/test_namespace_examples/00_6choice_link.html +++ b/tests/results/test_namespace_examples/00_6choice_link.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: a_choice              # The first variable

Example with all variables modifiable

+
rougail:
+  var1: a_choice

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: a_choice              # The first variable
-  var2: a_choice              # The second variable
\ No newline at end of file +
rougail:
+  var1: a_choice
+  var2: a_choice
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice_link.sh b/tests/results/test_namespace_examples/00_6choice_link.sh index be2cbe189..f774be4c9 100644 --- a/tests/results/test_namespace_examples/00_6choice_link.sh +++ b/tests/results/test_namespace_examples/00_6choice_link.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: a_choice # The first variable  - - +rougail:  + var1: a_choice  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: a_choice # The first variable  - var2: a_choice # The second variable  +rougail:  + var1: a_choice  + var2: a_choice  diff --git a/tests/results/test_namespace_examples/00_6choice_variable.adoc b/tests/results/test_namespace_examples/00_6choice_variable.adoc index 2e0570f10..256f631f2 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable.adoc +++ b/tests/results/test_namespace_examples/00_6choice_variable.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable + var2: a ---- diff --git a/tests/results/test_namespace_examples/00_6choice_variable.gitlab.md b/tests/results/test_namespace_examples/00_6choice_variable.gitlab.md index 0909f41dd..46a18bf77 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice_variable.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable + var2: a ``` diff --git a/tests/results/test_namespace_examples/00_6choice_variable.html b/tests/results/test_namespace_examples/00_6choice_variable.html index 77582eaa3..43a998cd8 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable.html +++ b/tests/results/test_namespace_examples/00_6choice_variable.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - a
     - b
     - c
-  var2: a                     # A first variable
\ No newline at end of file + var2: a
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice_variable.sh b/tests/results/test_namespace_examples/00_6choice_variable.sh index 5f1bbd56b..11836f627 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable.sh +++ b/tests/results/test_namespace_examples/00_6choice_variable.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - a   - b   - c  - var2: a # A first variable  + var2: a  diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link.adoc b/tests/results/test_namespace_examples/00_6choice_variable_link.adoc index 36a0c4912..f0909bee4 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link.adoc +++ b/tests/results/test_namespace_examples/00_6choice_variable_link.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable - var3: a # A third variable + var2: a + var3: a ---- diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_examples/00_6choice_variable_link.gitlab.md index 2080cd4e1..571b4d7eb 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice_variable_link.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable - var3: a # A third variable + var2: a + var3: a ``` diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link.html b/tests/results/test_namespace_examples/00_6choice_variable_link.html index 1794e6a2f..9598e7ffd 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link.html +++ b/tests/results/test_namespace_examples/00_6choice_variable_link.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - a
     - b
     - c
-  var2: a                     # A first variable
-  var3: a                     # A third variable
\ No newline at end of file + var2: a + var3: a
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link.sh b/tests/results/test_namespace_examples/00_6choice_variable_link.sh index 2faa1167c..6427bd83f 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link.sh +++ b/tests/results/test_namespace_examples/00_6choice_variable_link.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - a   - b   - c  - var2: a # A first variable  - var3: a # A third variable  + var2: a  + var3: a  diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link2.adoc b/tests/results/test_namespace_examples/00_6choice_variable_link2.adoc index 56d7815f4..d44ecf114 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link2.adoc +++ b/tests/results/test_namespace_examples/00_6choice_variable_link2.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable - family: # family - var3: a # A third variable + var2: a + family: + var3: a ---- diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_examples/00_6choice_variable_link2.gitlab.md index f08b7adb1..417661fae 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link2.gitlab.md +++ b/tests/results/test_namespace_examples/00_6choice_variable_link2.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - a - b - c - var2: a # A first variable - family: # family - var3: a # A third variable + var2: a + family: + var3: a ``` diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link2.html b/tests/results/test_namespace_examples/00_6choice_variable_link2.html index d35f5af54..a726be1df 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link2.html +++ b/tests/results/test_namespace_examples/00_6choice_variable_link2.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - a
     - b
     - c
-  var2: a                     # A first variable
-  family:                     # family
-    var3: a                   # A third variable
\ No newline at end of file + var2: a + family: + var3: a
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6choice_variable_link2.sh b/tests/results/test_namespace_examples/00_6choice_variable_link2.sh index 984bfd840..181e87665 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable_link2.sh +++ b/tests/results/test_namespace_examples/00_6choice_variable_link2.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - a   - b   - c  - var2: a # A first variable  - family: # family  - var3: a # A third variable  + var2: a  + family:  + var3: a  diff --git a/tests/results/test_namespace_examples/00_6custom.adoc b/tests/results/test_namespace_examples/00_6custom.adoc index 6031dcd3f..531e1f1b3 100644 --- a/tests/results/test_namespace_examples/00_6custom.adoc +++ b/tests/results/test_namespace_examples/00_6custom.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - custom1: xxx # The first variable +rougail: + custom1: xxx ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - custom1: xxx # The first variable - custom2: value # The seconf variable +rougail: + custom1: xxx + custom2: value ---- diff --git a/tests/results/test_namespace_examples/00_6custom.gitlab.md b/tests/results/test_namespace_examples/00_6custom.gitlab.md index d3b513fa1..8531a21b1 100644 --- a/tests/results/test_namespace_examples/00_6custom.gitlab.md +++ b/tests/results/test_namespace_examples/00_6custom.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - custom1: xxx # The first variable +rougail: + custom1: xxx ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - custom1: xxx # The first variable - custom2: value # The seconf variable +rougail: + custom1: xxx + custom2: value ``` diff --git a/tests/results/test_namespace_examples/00_6custom.html b/tests/results/test_namespace_examples/00_6custom.html index 3cebb1aea..706337757 100644 --- a/tests/results/test_namespace_examples/00_6custom.html +++ b/tests/results/test_namespace_examples/00_6custom.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  custom1: xxx                # The first variable

Example with all variables modifiable

+
rougail:
+  custom1: xxx

Example with all variables modifiable

-
rougail:                      # Rougail
-  custom1: xxx                # The first variable
-  custom2: value              # The seconf variable
\ No newline at end of file +
rougail:
+  custom1: xxx
+  custom2: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6custom.sh b/tests/results/test_namespace_examples/00_6custom.sh index 9ae732d1d..1e833cecc 100644 --- a/tests/results/test_namespace_examples/00_6custom.sh +++ b/tests/results/test_namespace_examples/00_6custom.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - custom1: xxx # The first variable  - - +rougail:  + custom1: xxx  Example with all variables modifiable - ---  -rougail: # Rougail  - custom1: xxx # The first variable  - custom2: value # The seconf variable  +rougail:  + custom1: xxx  + custom2: value  diff --git a/tests/results/test_namespace_examples/00_6domainname.adoc b/tests/results/test_namespace_examples/00_6domainname.adoc index c9073cee3..5dacd60a8 100644 --- a/tests/results/test_namespace_examples/00_6domainname.adoc +++ b/tests/results/test_namespace_examples/00_6domainname.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: my.domain.name # A domain name variable +rougail: + variable: my.domain.name ---- diff --git a/tests/results/test_namespace_examples/00_6domainname.gitlab.md b/tests/results/test_namespace_examples/00_6domainname.gitlab.md index f2c2447b8..fbcde2778 100644 --- a/tests/results/test_namespace_examples/00_6domainname.gitlab.md +++ b/tests/results/test_namespace_examples/00_6domainname.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: my.domain.name # A domain name variable +rougail: + variable: my.domain.name ``` diff --git a/tests/results/test_namespace_examples/00_6domainname.html b/tests/results/test_namespace_examples/00_6domainname.html index 3522fa38a..afbc8c40b 100644 --- a/tests/results/test_namespace_examples/00_6domainname.html +++ b/tests/results/test_namespace_examples/00_6domainname.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: my.domain.name    # A domain name variable
\ No newline at end of file +
rougail:
+  variable: my.domain.name
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6domainname.sh b/tests/results/test_namespace_examples/00_6domainname.sh index 0c20ac784..8ad59ceca 100644 --- a/tests/results/test_namespace_examples/00_6domainname.sh +++ b/tests/results/test_namespace_examples/00_6domainname.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: my.domain.name # A domain name variable  +rougail:  + variable: my.domain.name  diff --git a/tests/results/test_namespace_examples/00_6domainname_params.adoc b/tests/results/test_namespace_examples/00_6domainname_params.adoc index c9073cee3..5dacd60a8 100644 --- a/tests/results/test_namespace_examples/00_6domainname_params.adoc +++ b/tests/results/test_namespace_examples/00_6domainname_params.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: my.domain.name # A domain name variable +rougail: + variable: my.domain.name ---- diff --git a/tests/results/test_namespace_examples/00_6domainname_params.gitlab.md b/tests/results/test_namespace_examples/00_6domainname_params.gitlab.md index f2c2447b8..fbcde2778 100644 --- a/tests/results/test_namespace_examples/00_6domainname_params.gitlab.md +++ b/tests/results/test_namespace_examples/00_6domainname_params.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: my.domain.name # A domain name variable +rougail: + variable: my.domain.name ``` diff --git a/tests/results/test_namespace_examples/00_6domainname_params.html b/tests/results/test_namespace_examples/00_6domainname_params.html index 3522fa38a..afbc8c40b 100644 --- a/tests/results/test_namespace_examples/00_6domainname_params.html +++ b/tests/results/test_namespace_examples/00_6domainname_params.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: my.domain.name    # A domain name variable
\ No newline at end of file +
rougail:
+  variable: my.domain.name
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6domainname_params.sh b/tests/results/test_namespace_examples/00_6domainname_params.sh index 0c20ac784..8ad59ceca 100644 --- a/tests/results/test_namespace_examples/00_6domainname_params.sh +++ b/tests/results/test_namespace_examples/00_6domainname_params.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: my.domain.name # A domain name variable  +rougail:  + variable: my.domain.name  diff --git a/tests/results/test_namespace_examples/00_6float.adoc b/tests/results/test_namespace_examples/00_6float.adoc index 0a3df8ba9..f6df28f2f 100644 --- a/tests/results/test_namespace_examples/00_6float.adoc +++ b/tests/results/test_namespace_examples/00_6float.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: 0.0 # The first variable - var2: 0.0 # The second variable - var3: 0.0 # The third variable - var4: 10.1 # The forth variable - var5: 10.1 # The fifth variable - var6: 10.1 # The sixth variable +rougail: + var1: 0.0 + var2: 0.0 + var3: 0.0 + var4: 10.1 + var5: 10.1 + var6: 10.1 ---- diff --git a/tests/results/test_namespace_examples/00_6float.gitlab.md b/tests/results/test_namespace_examples/00_6float.gitlab.md index 1e21ab738..75eb8dd71 100644 --- a/tests/results/test_namespace_examples/00_6float.gitlab.md +++ b/tests/results/test_namespace_examples/00_6float.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - var1: 0.0 # The first variable - var2: 0.0 # The second variable - var3: 0.0 # The third variable - var4: 10.1 # The forth variable - var5: 10.1 # The fifth variable - var6: 10.1 # The sixth variable +rougail: + var1: 0.0 + var2: 0.0 + var3: 0.0 + var4: 10.1 + var5: 10.1 + var6: 10.1 ``` diff --git a/tests/results/test_namespace_examples/00_6float.html b/tests/results/test_namespace_examples/00_6float.html index d9bbe845d..b07f88ea8 100644 --- a/tests/results/test_namespace_examples/00_6float.html +++ b/tests/results/test_namespace_examples/00_6float.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: 0.0                   # The first variable
-  var2: 0.0                   # The second variable
-  var3: 0.0                   # The third variable
-  var4: 10.1                  # The forth variable
-  var5: 10.1                  # The fifth variable
-  var6: 10.1                  # The sixth variable
\ No newline at end of file +
rougail:
+  var1: 0.0
+  var2: 0.0
+  var3: 0.0
+  var4: 10.1
+  var5: 10.1
+  var6: 10.1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6float.sh b/tests/results/test_namespace_examples/00_6float.sh index c8a36d4df..38b05aea2 100644 --- a/tests/results/test_namespace_examples/00_6float.sh +++ b/tests/results/test_namespace_examples/00_6float.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: 0.0 # The first variable  - var2: 0.0 # The second variable  - var3: 0.0 # The third variable  - var4: 10.1 # The forth variable  - var5: 10.1 # The fifth variable  - var6: 10.1 # The sixth variable  +rougail:  + var1: 0.0  + var2: 0.0  + var3: 0.0  + var4: 10.1  + var5: 10.1  + var6: 10.1  diff --git a/tests/results/test_namespace_examples/00_6integer.adoc b/tests/results/test_namespace_examples/00_6integer.adoc index ea69b8ed9..d9c5fe312 100644 --- a/tests/results/test_namespace_examples/00_6integer.adoc +++ b/tests/results/test_namespace_examples/00_6integer.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: 0 # The first variable - var2: 0 # The second variable - var3: 0 # The third variable - var4: 10 # This forth variable - var5: 10 # The fifth variable - var6: 10 # The sixth variable +rougail: + var1: 0 + var2: 0 + var3: 0 + var4: 10 + var5: 10 + var6: 10 ---- diff --git a/tests/results/test_namespace_examples/00_6integer.gitlab.md b/tests/results/test_namespace_examples/00_6integer.gitlab.md index c9d2f4f96..a3edb843f 100644 --- a/tests/results/test_namespace_examples/00_6integer.gitlab.md +++ b/tests/results/test_namespace_examples/00_6integer.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - var1: 0 # The first variable - var2: 0 # The second variable - var3: 0 # The third variable - var4: 10 # This forth variable - var5: 10 # The fifth variable - var6: 10 # The sixth variable +rougail: + var1: 0 + var2: 0 + var3: 0 + var4: 10 + var5: 10 + var6: 10 ``` diff --git a/tests/results/test_namespace_examples/00_6integer.html b/tests/results/test_namespace_examples/00_6integer.html index e8fef53aa..373fc970a 100644 --- a/tests/results/test_namespace_examples/00_6integer.html +++ b/tests/results/test_namespace_examples/00_6integer.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: 0                     # The first variable
-  var2: 0                     # The second variable
-  var3: 0                     # The third variable
-  var4: 10                    # This forth variable
-  var5: 10                    # The fifth variable
-  var6: 10                    # The sixth variable
\ No newline at end of file +
rougail:
+  var1: 0
+  var2: 0
+  var3: 0
+  var4: 10
+  var5: 10
+  var6: 10
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6integer.sh b/tests/results/test_namespace_examples/00_6integer.sh index f18578215..df20753ad 100644 --- a/tests/results/test_namespace_examples/00_6integer.sh +++ b/tests/results/test_namespace_examples/00_6integer.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: 0 # The first variable  - var2: 0 # The second variable  - var3: 0 # The third variable  - var4: 10 # This forth variable  - var5: 10 # The fifth variable  - var6: 10 # The sixth variable  +rougail:  + var1: 0  + var2: 0  + var3: 0  + var4: 10  + var5: 10  + var6: 10  diff --git a/tests/results/test_namespace_examples/00_6ip.adoc b/tests/results/test_namespace_examples/00_6ip.adoc index b793a9686..2d1683c30 100644 --- a/tests/results/test_namespace_examples/00_6ip.adoc +++ b/tests/results/test_namespace_examples/00_6ip.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: 1.1.1.1 # An IP - var2: 192.168.0.128/25 # An IP in CIDR format - var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type +rougail: + var1: 1.1.1.1 + var2: 192.168.0.128/25 + var3: 1.1.1.1/24 ---- diff --git a/tests/results/test_namespace_examples/00_6ip.gitlab.md b/tests/results/test_namespace_examples/00_6ip.gitlab.md index cfe39afa1..8e9830a83 100644 --- a/tests/results/test_namespace_examples/00_6ip.gitlab.md +++ b/tests/results/test_namespace_examples/00_6ip.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var1: 1.1.1.1 # An IP - var2: 192.168.0.128/25 # An IP in CIDR format - var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type +rougail: + var1: 1.1.1.1 + var2: 192.168.0.128/25 + var3: 1.1.1.1/24 ``` diff --git a/tests/results/test_namespace_examples/00_6ip.html b/tests/results/test_namespace_examples/00_6ip.html index 389829832..6a3735756 100644 --- a/tests/results/test_namespace_examples/00_6ip.html +++ b/tests/results/test_namespace_examples/00_6ip.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: 1.1.1.1               # An IP
-  var2: 192.168.0.128/25      # An IP in CIDR format
-  var3: 1.1.1.1/24            # An IP in CIDR format with obsolete CIDR type
\ No newline at end of file +
rougail:
+  var1: 1.1.1.1
+  var2: 192.168.0.128/25
+  var3: 1.1.1.1/24
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6ip.sh b/tests/results/test_namespace_examples/00_6ip.sh index 3ebcc9d98..c19ca79a2 100644 --- a/tests/results/test_namespace_examples/00_6ip.sh +++ b/tests/results/test_namespace_examples/00_6ip.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: 1.1.1.1 # An IP  - var2: 192.168.0.128/25 # An IP in CIDR format  - var3: 1.1.1.1/24 # An IP in CIDR format with obsolete CIDR type  +rougail:  + var1: 1.1.1.1  + var2: 192.168.0.128/25  + var3: 1.1.1.1/24  diff --git a/tests/results/test_namespace_examples/00_6network.adoc b/tests/results/test_namespace_examples/00_6network.adoc index 145c3c503..3e1fce895 100644 --- a/tests/results/test_namespace_examples/00_6network.adoc +++ b/tests/results/test_namespace_examples/00_6network.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: 1.1.1.0 # An network - var2: 1.1.1.0/24 # An network in CIDR format - var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR type +rougail: + var1: 1.1.1.0 + var2: 1.1.1.0/24 + var3: 1.1.1.0/24 ---- diff --git a/tests/results/test_namespace_examples/00_6network.gitlab.md b/tests/results/test_namespace_examples/00_6network.gitlab.md index 949eb10ba..4c3f169f6 100644 --- a/tests/results/test_namespace_examples/00_6network.gitlab.md +++ b/tests/results/test_namespace_examples/00_6network.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var1: 1.1.1.0 # An network - var2: 1.1.1.0/24 # An network in CIDR format - var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR type +rougail: + var1: 1.1.1.0 + var2: 1.1.1.0/24 + var3: 1.1.1.0/24 ``` diff --git a/tests/results/test_namespace_examples/00_6network.html b/tests/results/test_namespace_examples/00_6network.html index cd670711a..2cc031fe6 100644 --- a/tests/results/test_namespace_examples/00_6network.html +++ b/tests/results/test_namespace_examples/00_6network.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: 1.1.1.0               # An network
-  var2: 1.1.1.0/24            # An network in CIDR format
-  var3: 1.1.1.0/24            # An network in CIDR format with obsolete CIDR type
\ No newline at end of file +
rougail:
+  var1: 1.1.1.0
+  var2: 1.1.1.0/24
+  var3: 1.1.1.0/24
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6network.sh b/tests/results/test_namespace_examples/00_6network.sh index 22a5ea997..c940dc031 100644 --- a/tests/results/test_namespace_examples/00_6network.sh +++ b/tests/results/test_namespace_examples/00_6network.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: 1.1.1.0 # An network  - var2: 1.1.1.0/24 # An network in CIDR format  - var3: 1.1.1.0/24 # An network in CIDR format with obsolete CIDR typ +rougail:  + var1: 1.1.1.0  + var2: 1.1.1.0/24  + var3: 1.1.1.0/24  diff --git a/tests/results/test_namespace_examples/00_6number.adoc b/tests/results/test_namespace_examples/00_6number.adoc index ea69b8ed9..d9c5fe312 100644 --- a/tests/results/test_namespace_examples/00_6number.adoc +++ b/tests/results/test_namespace_examples/00_6number.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: 0 # The first variable - var2: 0 # The second variable - var3: 0 # The third variable - var4: 10 # This forth variable - var5: 10 # The fifth variable - var6: 10 # The sixth variable +rougail: + var1: 0 + var2: 0 + var3: 0 + var4: 10 + var5: 10 + var6: 10 ---- diff --git a/tests/results/test_namespace_examples/00_6number.gitlab.md b/tests/results/test_namespace_examples/00_6number.gitlab.md index c9d2f4f96..a3edb843f 100644 --- a/tests/results/test_namespace_examples/00_6number.gitlab.md +++ b/tests/results/test_namespace_examples/00_6number.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - var1: 0 # The first variable - var2: 0 # The second variable - var3: 0 # The third variable - var4: 10 # This forth variable - var5: 10 # The fifth variable - var6: 10 # The sixth variable +rougail: + var1: 0 + var2: 0 + var3: 0 + var4: 10 + var5: 10 + var6: 10 ``` diff --git a/tests/results/test_namespace_examples/00_6number.html b/tests/results/test_namespace_examples/00_6number.html index e8fef53aa..373fc970a 100644 --- a/tests/results/test_namespace_examples/00_6number.html +++ b/tests/results/test_namespace_examples/00_6number.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: 0                     # The first variable
-  var2: 0                     # The second variable
-  var3: 0                     # The third variable
-  var4: 10                    # This forth variable
-  var5: 10                    # The fifth variable
-  var6: 10                    # The sixth variable
\ No newline at end of file +
rougail:
+  var1: 0
+  var2: 0
+  var3: 0
+  var4: 10
+  var5: 10
+  var6: 10
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6number.sh b/tests/results/test_namespace_examples/00_6number.sh index f18578215..df20753ad 100644 --- a/tests/results/test_namespace_examples/00_6number.sh +++ b/tests/results/test_namespace_examples/00_6number.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: 0 # The first variable  - var2: 0 # The second variable  - var3: 0 # The third variable  - var4: 10 # This forth variable  - var5: 10 # The fifth variable  - var6: 10 # The sixth variable  +rougail:  + var1: 0  + var2: 0  + var3: 0  + var4: 10  + var5: 10  + var6: 10  diff --git a/tests/results/test_namespace_examples/00_6port.adoc b/tests/results/test_namespace_examples/00_6port.adoc index 2089af53c..4c05f738f 100644 --- a/tests/results/test_namespace_examples/00_6port.adoc +++ b/tests/results/test_namespace_examples/00_6port.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - variable1: '111' # A port variable +rougail: + variable1: '111' ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable1: '111' # A port variable - variable2: '8080' # A port variable with default value - variable3: '8080' # A port variable with integer default value +rougail: + variable1: '111' + variable2: '8080' + variable3: '8080' ---- diff --git a/tests/results/test_namespace_examples/00_6port.gitlab.md b/tests/results/test_namespace_examples/00_6port.gitlab.md index b54706ade..ed4ff199d 100644 --- a/tests/results/test_namespace_examples/00_6port.gitlab.md +++ b/tests/results/test_namespace_examples/00_6port.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable1: '111' # A port variable +rougail: + variable1: '111' ``` @@ -11,10 +11,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable1: '111' # A port variable - variable2: '8080' # A port variable with default value - variable3: '8080' # A port variable with integer default value +rougail: + variable1: '111' + variable2: '8080' + variable3: '8080' ``` diff --git a/tests/results/test_namespace_examples/00_6port.html b/tests/results/test_namespace_examples/00_6port.html index dc04e9aa1..4b37aa3bf 100644 --- a/tests/results/test_namespace_examples/00_6port.html +++ b/tests/results/test_namespace_examples/00_6port.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable1: '111'            # A port variable

Example with all variables modifiable

+
rougail:
+  variable1: '111'

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable1: '111'            # A port variable
-  variable2: '8080'           # A port variable with default value
-  variable3: '8080'           # A port variable with integer default value
\ No newline at end of file +
rougail:
+  variable1: '111'
+  variable2: '8080'
+  variable3: '8080'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6port.sh b/tests/results/test_namespace_examples/00_6port.sh index 4d276b018..add48e948 100644 --- a/tests/results/test_namespace_examples/00_6port.sh +++ b/tests/results/test_namespace_examples/00_6port.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable1: '111' # A port variable  - - +rougail:  + variable1: '111'  Example with all variables modifiable - ---  -rougail: # Rougail  - variable1: '111' # A port variable  - variable2: '8080' # A port variable with default value  - variable3: '8080' # A port variable with integer default value  +rougail:  + variable1: '111'  + variable2: '8080'  + variable3: '8080'  diff --git a/tests/results/test_namespace_examples/00_6regexp.adoc b/tests/results/test_namespace_examples/00_6regexp.adoc index d8319d99d..f030468a4 100644 --- a/tests/results/test_namespace_examples/00_6regexp.adoc +++ b/tests/results/test_namespace_examples/00_6regexp.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: '#b1b1b1' # A first variable +rougail: + var: '#b1b1b1' ---- diff --git a/tests/results/test_namespace_examples/00_6regexp.gitlab.md b/tests/results/test_namespace_examples/00_6regexp.gitlab.md index ca002ccc1..cbfdcfbfe 100644 --- a/tests/results/test_namespace_examples/00_6regexp.gitlab.md +++ b/tests/results/test_namespace_examples/00_6regexp.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: '#b1b1b1' # A first variable +rougail: + var: '#b1b1b1' ``` diff --git a/tests/results/test_namespace_examples/00_6regexp.html b/tests/results/test_namespace_examples/00_6regexp.html index 1b2ab155d..7ea85e82b 100644 --- a/tests/results/test_namespace_examples/00_6regexp.html +++ b/tests/results/test_namespace_examples/00_6regexp.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: '#b1b1b1'              # A first variable
\ No newline at end of file +
rougail:
+  var: '#b1b1b1'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6regexp.sh b/tests/results/test_namespace_examples/00_6regexp.sh index dcbf856c6..f799e2909 100644 --- a/tests/results/test_namespace_examples/00_6regexp.sh +++ b/tests/results/test_namespace_examples/00_6regexp.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: '#b1b1b1' # A first variable  +rougail:  + var: '#b1b1b1'  diff --git a/tests/results/test_namespace_examples/00_6regexp_link.adoc b/tests/results/test_namespace_examples/00_6regexp_link.adoc index 37ec6921f..a8e7b2aee 100644 --- a/tests/results/test_namespace_examples/00_6regexp_link.adoc +++ b/tests/results/test_namespace_examples/00_6regexp_link.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: '#b1b1b1' # A first variable - var2: '#b2b1b1' # A second variable +rougail: + var1: '#b1b1b1' + var2: '#b2b1b1' ---- diff --git a/tests/results/test_namespace_examples/00_6regexp_link.gitlab.md b/tests/results/test_namespace_examples/00_6regexp_link.gitlab.md index 7ea420c43..c94300e57 100644 --- a/tests/results/test_namespace_examples/00_6regexp_link.gitlab.md +++ b/tests/results/test_namespace_examples/00_6regexp_link.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: '#b1b1b1' # A first variable - var2: '#b2b1b1' # A second variable +rougail: + var1: '#b1b1b1' + var2: '#b2b1b1' ``` diff --git a/tests/results/test_namespace_examples/00_6regexp_link.html b/tests/results/test_namespace_examples/00_6regexp_link.html index f1f521006..baa7bd193 100644 --- a/tests/results/test_namespace_examples/00_6regexp_link.html +++ b/tests/results/test_namespace_examples/00_6regexp_link.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: '#b1b1b1'             # A first variable
-  var2: '#b2b1b1'             # A second variable
\ No newline at end of file +
rougail:
+  var1: '#b1b1b1'
+  var2: '#b2b1b1'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6regexp_link.sh b/tests/results/test_namespace_examples/00_6regexp_link.sh index 02d7a5786..b444a4d05 100644 --- a/tests/results/test_namespace_examples/00_6regexp_link.sh +++ b/tests/results/test_namespace_examples/00_6regexp_link.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: '#b1b1b1' # A first variable  - var2: '#b2b1b1' # A second variable  +rougail:  + var1: '#b1b1b1'  + var2: '#b2b1b1'  diff --git a/tests/results/test_namespace_examples/00_6secret.adoc b/tests/results/test_namespace_examples/00_6secret.adoc index 8ff7beb2c..673d506d5 100644 --- a/tests/results/test_namespace_examples/00_6secret.adoc +++ b/tests/results/test_namespace_examples/00_6secret.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - secret1: secrets # The first variable +rougail: + secret1: secrets ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - secret1: secrets # The first variable - secret2: value # The second variable +rougail: + secret1: secrets + secret2: value ---- diff --git a/tests/results/test_namespace_examples/00_6secret.gitlab.md b/tests/results/test_namespace_examples/00_6secret.gitlab.md index 7b0323a8b..e9e9de3b7 100644 --- a/tests/results/test_namespace_examples/00_6secret.gitlab.md +++ b/tests/results/test_namespace_examples/00_6secret.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - secret1: secrets # The first variable +rougail: + secret1: secrets ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - secret1: secrets # The first variable - secret2: value # The second variable +rougail: + secret1: secrets + secret2: value ``` diff --git a/tests/results/test_namespace_examples/00_6secret.html b/tests/results/test_namespace_examples/00_6secret.html index 400e6affd..1cbd66795 100644 --- a/tests/results/test_namespace_examples/00_6secret.html +++ b/tests/results/test_namespace_examples/00_6secret.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  secret1: secrets            # The first variable

Example with all variables modifiable

+
rougail:
+  secret1: secrets

Example with all variables modifiable

-
rougail:                      # Rougail
-  secret1: secrets            # The first variable
-  secret2: value              # The second variable
\ No newline at end of file +
rougail:
+  secret1: secrets
+  secret2: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6secret.sh b/tests/results/test_namespace_examples/00_6secret.sh index 4f9bce78c..47ac6fba8 100644 --- a/tests/results/test_namespace_examples/00_6secret.sh +++ b/tests/results/test_namespace_examples/00_6secret.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - secret1: secrets # The first variable  - - +rougail:  + secret1: secrets  Example with all variables modifiable - ---  -rougail: # Rougail  - secret1: secrets # The first variable  - secret2: value # The second variable  +rougail:  + secret1: secrets  + secret2: value  diff --git a/tests/results/test_namespace_examples/00_6secret_param.adoc b/tests/results/test_namespace_examples/00_6secret_param.adoc index 199d8182f..5657a6de3 100644 --- a/tests/results/test_namespace_examples/00_6secret_param.adoc +++ b/tests/results/test_namespace_examples/00_6secret_param.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - secret1: secrets # The first variable +rougail: + secret1: secrets ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - secret1: secrets # The first variable - secret2: value # The second variable - secret3: value # The third variable +rougail: + secret1: secrets + secret2: value + secret3: value ---- diff --git a/tests/results/test_namespace_examples/00_6secret_param.gitlab.md b/tests/results/test_namespace_examples/00_6secret_param.gitlab.md index a6fb6ca2c..7527502bd 100644 --- a/tests/results/test_namespace_examples/00_6secret_param.gitlab.md +++ b/tests/results/test_namespace_examples/00_6secret_param.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - secret1: secrets # The first variable +rougail: + secret1: secrets ``` @@ -11,10 +11,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - secret1: secrets # The first variable - secret2: value # The second variable - secret3: value # The third variable +rougail: + secret1: secrets + secret2: value + secret3: value ``` diff --git a/tests/results/test_namespace_examples/00_6secret_param.html b/tests/results/test_namespace_examples/00_6secret_param.html index e8f2b1ebe..4e636edf4 100644 --- a/tests/results/test_namespace_examples/00_6secret_param.html +++ b/tests/results/test_namespace_examples/00_6secret_param.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  secret1: secrets            # The first variable

Example with all variables modifiable

+
rougail:
+  secret1: secrets

Example with all variables modifiable

-
rougail:                      # Rougail
-  secret1: secrets            # The first variable
-  secret2: value              # The second variable
-  secret3: value              # The third variable
\ No newline at end of file +
rougail:
+  secret1: secrets
+  secret2: value
+  secret3: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6secret_param.sh b/tests/results/test_namespace_examples/00_6secret_param.sh index 1deb7a1f3..f64de93bb 100644 --- a/tests/results/test_namespace_examples/00_6secret_param.sh +++ b/tests/results/test_namespace_examples/00_6secret_param.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - secret1: secrets # The first variable  - - +rougail:  + secret1: secrets  Example with all variables modifiable - ---  -rougail: # Rougail  - secret1: secrets # The first variable  - secret2: value # The second variable  - secret3: value # The third variable  +rougail:  + secret1: secrets  + secret2: value  + secret3: value  diff --git a/tests/results/test_namespace_examples/00_6string.adoc b/tests/results/test_namespace_examples/00_6string.adoc index 1e79492dd..18240df04 100644 --- a/tests/results/test_namespace_examples/00_6string.adoc +++ b/tests/results/test_namespace_examples/00_6string.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable - var3: example # The third variable +rougail: + var1: example + var2: example + var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable - var3: example # The third variable - var4: value # The forth variable - var5: value # The fifth variable - var6: value # The sixth variable - var7: '8080' # The seventh variable - var8: 'true' # The height variable +rougail: + var1: example + var2: example + var3: example + var4: value + var5: value + var6: value + var7: '8080' + var8: 'true' ---- diff --git a/tests/results/test_namespace_examples/00_6string.gitlab.md b/tests/results/test_namespace_examples/00_6string.gitlab.md index d791b73fc..a746a78d2 100644 --- a/tests/results/test_namespace_examples/00_6string.gitlab.md +++ b/tests/results/test_namespace_examples/00_6string.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable - var3: example # The third variable +rougail: + var1: example + var2: example + var3: example ``` @@ -13,15 +13,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable - var3: example # The third variable - var4: value # The forth variable - var5: value # The fifth variable - var6: value # The sixth variable - var7: '8080' # The seventh variable - var8: 'true' # The height variable +rougail: + var1: example + var2: example + var3: example + var4: value + var5: value + var6: value + var7: '8080' + var8: 'true' ``` diff --git a/tests/results/test_namespace_examples/00_6string.html b/tests/results/test_namespace_examples/00_6string.html index c49fdde8a..ca31e86ab 100644 --- a/tests/results/test_namespace_examples/00_6string.html +++ b/tests/results/test_namespace_examples/00_6string.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable
-  var3: example               # The third variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example
+  var3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable
-  var3: example               # The third variable
-  var4: value                 # The forth variable
-  var5: value                 # The fifth variable
-  var6: value                 # The sixth variable
-  var7: '8080'                # The seventh variable
-  var8: 'true'                # The height variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
+  var3: example
+  var4: value
+  var5: value
+  var6: value
+  var7: '8080'
+  var8: 'true'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_6string.sh b/tests/results/test_namespace_examples/00_6string.sh index e6288fc08..3dd45e6e7 100644 --- a/tests/results/test_namespace_examples/00_6string.sh +++ b/tests/results/test_namespace_examples/00_6string.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  - var3: example # The third variable  - - +rougail:  + var1: example  + var2: example  + var3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  - var3: example # The third variable  - var4: value # The forth variable  - var5: value # The fifth variable  - var6: value # The sixth variable  - var7: '8080' # The seventh variable  - var8: 'true' # The height variable  +rougail:  + var1: example  + var2: example  + var3: example  + var4: value  + var5: value  + var6: value  + var7: '8080'  + var8: 'true'  diff --git a/tests/results/test_namespace_examples/00_7choice_quote.adoc b/tests/results/test_namespace_examples/00_7choice_quote.adoc index 6cdb36103..25f0472ae 100644 --- a/tests/results/test_namespace_examples/00_7choice_quote.adoc +++ b/tests/results/test_namespace_examples/00_7choice_quote.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: quote' # A choice +rougail: + var: quote' ---- diff --git a/tests/results/test_namespace_examples/00_7choice_quote.gitlab.md b/tests/results/test_namespace_examples/00_7choice_quote.gitlab.md index 7636b95ab..c3574dec4 100644 --- a/tests/results/test_namespace_examples/00_7choice_quote.gitlab.md +++ b/tests/results/test_namespace_examples/00_7choice_quote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: quote' # A choice +rougail: + var: quote' ``` diff --git a/tests/results/test_namespace_examples/00_7choice_quote.html b/tests/results/test_namespace_examples/00_7choice_quote.html index db2c333d1..1ce1b4221 100644 --- a/tests/results/test_namespace_examples/00_7choice_quote.html +++ b/tests/results/test_namespace_examples/00_7choice_quote.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: quote'                 # A choice
\ No newline at end of file +
rougail:
+  var: quote'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7choice_quote.sh b/tests/results/test_namespace_examples/00_7choice_quote.sh index c6e279a1e..cf7429349 100644 --- a/tests/results/test_namespace_examples/00_7choice_quote.sh +++ b/tests/results/test_namespace_examples/00_7choice_quote.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: quote' # A choice  +rougail:  + var: quote'  diff --git a/tests/results/test_namespace_examples/00_7help.adoc b/tests/results/test_namespace_examples/00_7help.adoc index 940cf0d3d..4dd3bf50c 100644 --- a/tests/results/test_namespace_examples/00_7help.adoc +++ b/tests/results/test_namespace_examples/00_7help.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_7help.gitlab.md b/tests/results/test_namespace_examples/00_7help.gitlab.md index 0e2c00a5c..e0fd12138 100644 --- a/tests/results/test_namespace_examples/00_7help.gitlab.md +++ b/tests/results/test_namespace_examples/00_7help.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_7help.html b/tests/results/test_namespace_examples/00_7help.html index f18ef5f81..8324ee308 100644 --- a/tests/results/test_namespace_examples/00_7help.html +++ b/tests/results/test_namespace_examples/00_7help.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7help.sh b/tests/results/test_namespace_examples/00_7help.sh index 742724fd8..3144faa0c 100644 --- a/tests/results/test_namespace_examples/00_7help.sh +++ b/tests/results/test_namespace_examples/00_7help.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  - - +rougail:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_7help_quote.adoc b/tests/results/test_namespace_examples/00_7help_quote.adoc index 940cf0d3d..4dd3bf50c 100644 --- a/tests/results/test_namespace_examples/00_7help_quote.adoc +++ b/tests/results/test_namespace_examples/00_7help_quote.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_7help_quote.gitlab.md b/tests/results/test_namespace_examples/00_7help_quote.gitlab.md index 0e2c00a5c..e0fd12138 100644 --- a/tests/results/test_namespace_examples/00_7help_quote.gitlab.md +++ b/tests/results/test_namespace_examples/00_7help_quote.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_7help_quote.html b/tests/results/test_namespace_examples/00_7help_quote.html index f18ef5f81..8324ee308 100644 --- a/tests/results/test_namespace_examples/00_7help_quote.html +++ b/tests/results/test_namespace_examples/00_7help_quote.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7help_quote.sh b/tests/results/test_namespace_examples/00_7help_quote.sh index 742724fd8..3144faa0c 100644 --- a/tests/results/test_namespace_examples/00_7help_quote.sh +++ b/tests/results/test_namespace_examples/00_7help_quote.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  - - +rougail:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_7help_sup.adoc b/tests/results/test_namespace_examples/00_7help_sup.adoc index 8039b65a4..4dd3bf50c 100644 --- a/tests/results/test_namespace_examples/00_7help_sup.adoc +++ b/tests/results/test_namespace_examples/00_7help_sup.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # The first - var2: example # The second +rougail: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # The first - var2: example # The second +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_7help_sup.gitlab.md b/tests/results/test_namespace_examples/00_7help_sup.gitlab.md index 3b8126a7b..e0fd12138 100644 --- a/tests/results/test_namespace_examples/00_7help_sup.gitlab.md +++ b/tests/results/test_namespace_examples/00_7help_sup.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # The first - var2: example # The second +rougail: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # The first - var2: example # The second +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_7help_sup.html b/tests/results/test_namespace_examples/00_7help_sup.html index d37e45be3..8324ee308 100644 --- a/tests/results/test_namespace_examples/00_7help_sup.html +++ b/tests/results/test_namespace_examples/00_7help_sup.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # The first 
-  var2: example               # The second 

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # The first 
-  var2: example               # The second 
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7help_sup.sh b/tests/results/test_namespace_examples/00_7help_sup.sh index f9aac15d2..3144faa0c 100644 --- a/tests/results/test_namespace_examples/00_7help_sup.sh +++ b/tests/results/test_namespace_examples/00_7help_sup.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # The first   - var2: example # The second   - - +rougail:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # The first   - var2: example # The second   +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_7value_doublequote.adoc b/tests/results/test_namespace_examples/00_7value_doublequote.adoc index 4d6c75b91..d9e3bbe3a 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote.adoc +++ b/tests/results/test_namespace_examples/00_7value_doublequote.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: quote" # A variable +rougail: + variable: quote" ---- diff --git a/tests/results/test_namespace_examples/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_examples/00_7value_doublequote.gitlab.md index 843fd3419..4fe3a1b58 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote.gitlab.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: quote" # A variable +rougail: + variable: quote" ``` diff --git a/tests/results/test_namespace_examples/00_7value_doublequote.html b/tests/results/test_namespace_examples/00_7value_doublequote.html index 1df1cd6c5..66204a873 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote.html +++ b/tests/results/test_namespace_examples/00_7value_doublequote.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: quote"            # A variable
\ No newline at end of file +
rougail:
+  variable: quote"
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7value_doublequote.sh b/tests/results/test_namespace_examples/00_7value_doublequote.sh index 9f55bfe91..dfd692d83 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote.sh +++ b/tests/results/test_namespace_examples/00_7value_doublequote.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: quote" # A variable  +rougail:  + variable: quote"  diff --git a/tests/results/test_namespace_examples/00_7value_doublequote2.adoc b/tests/results/test_namespace_examples/00_7value_doublequote2.adoc index dafd1c0da..9382ca244 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote2.adoc +++ b/tests/results/test_namespace_examples/00_7value_doublequote2.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: quote'" # A variable +rougail: + variable: quote'" ---- diff --git a/tests/results/test_namespace_examples/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_examples/00_7value_doublequote2.gitlab.md index 881887546..fa418a181 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote2.gitlab.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: quote'" # A variable +rougail: + variable: quote'" ``` diff --git a/tests/results/test_namespace_examples/00_7value_doublequote2.html b/tests/results/test_namespace_examples/00_7value_doublequote2.html index 5e48aae4d..904ba3dac 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote2.html +++ b/tests/results/test_namespace_examples/00_7value_doublequote2.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: quote'"           # A variable
\ No newline at end of file +
rougail:
+  variable: quote'"
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7value_doublequote2.sh b/tests/results/test_namespace_examples/00_7value_doublequote2.sh index 41e90f391..d97b857e5 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote2.sh +++ b/tests/results/test_namespace_examples/00_7value_doublequote2.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: quote'" # A variable  +rougail:  + variable: quote'"  diff --git a/tests/results/test_namespace_examples/00_7value_doublequote3.adoc b/tests/results/test_namespace_examples/00_7value_doublequote3.adoc index 2dfa03f8e..760694167 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote3.adoc +++ b/tests/results/test_namespace_examples/00_7value_doublequote3.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: quote\"\' # A variable +rougail: + variable: quote\"\' ---- diff --git a/tests/results/test_namespace_examples/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_examples/00_7value_doublequote3.gitlab.md index 6befad5ce..9331eb0d5 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote3.gitlab.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote3.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: quote\"\' # A variable +rougail: + variable: quote\"\' ``` diff --git a/tests/results/test_namespace_examples/00_7value_doublequote3.html b/tests/results/test_namespace_examples/00_7value_doublequote3.html index 348e9a8bc..8e3ebcfce 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote3.html +++ b/tests/results/test_namespace_examples/00_7value_doublequote3.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: quote\"\'         # A variable
\ No newline at end of file +
rougail:
+  variable: quote\"\'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7value_doublequote3.sh b/tests/results/test_namespace_examples/00_7value_doublequote3.sh index 1ac429f76..551bde74a 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote3.sh +++ b/tests/results/test_namespace_examples/00_7value_doublequote3.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: quote\"\' # A variable  +rougail:  + variable: quote\"\'  diff --git a/tests/results/test_namespace_examples/00_7value_quote.adoc b/tests/results/test_namespace_examples/00_7value_quote.adoc index 9b6bd59ea..4f729f9e7 100644 --- a/tests/results/test_namespace_examples/00_7value_quote.adoc +++ b/tests/results/test_namespace_examples/00_7value_quote.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: quote' # A variable +rougail: + variable: quote' ---- diff --git a/tests/results/test_namespace_examples/00_7value_quote.gitlab.md b/tests/results/test_namespace_examples/00_7value_quote.gitlab.md index f6b9ae41e..4b5915cfc 100644 --- a/tests/results/test_namespace_examples/00_7value_quote.gitlab.md +++ b/tests/results/test_namespace_examples/00_7value_quote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: quote' # A variable +rougail: + variable: quote' ``` diff --git a/tests/results/test_namespace_examples/00_7value_quote.html b/tests/results/test_namespace_examples/00_7value_quote.html index 6a46ad37b..823d377c1 100644 --- a/tests/results/test_namespace_examples/00_7value_quote.html +++ b/tests/results/test_namespace_examples/00_7value_quote.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: quote'            # A variable
\ No newline at end of file +
rougail:
+  variable: quote'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_7value_quote.sh b/tests/results/test_namespace_examples/00_7value_quote.sh index 6fe82806f..6e503964e 100644 --- a/tests/results/test_namespace_examples/00_7value_quote.sh +++ b/tests/results/test_namespace_examples/00_7value_quote.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: quote' # A variable  +rougail:  + variable: quote'  diff --git a/tests/results/test_namespace_examples/00_8calculation_information.adoc b/tests/results/test_namespace_examples/00_8calculation_information.adoc index 927070e8d..033f9ec0e 100644 --- a/tests/results/test_namespace_examples/00_8calculation_information.adoc +++ b/tests/results/test_namespace_examples/00_8calculation_information.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- diff --git a/tests/results/test_namespace_examples/00_8calculation_information.gitlab.md b/tests/results/test_namespace_examples/00_8calculation_information.gitlab.md index c36fb1d38..a806176cb 100644 --- a/tests/results/test_namespace_examples/00_8calculation_information.gitlab.md +++ b/tests/results/test_namespace_examples/00_8calculation_information.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` diff --git a/tests/results/test_namespace_examples/00_8calculation_information.html b/tests/results/test_namespace_examples/00_8calculation_information.html index f5093ec1a..5a8f20cd3 100644 --- a/tests/results/test_namespace_examples/00_8calculation_information.html +++ b/tests/results/test_namespace_examples/00_8calculation_information.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_8calculation_information.sh b/tests/results/test_namespace_examples/00_8calculation_information.sh index 2b73142aa..4669a58ed 100644 --- a/tests/results/test_namespace_examples/00_8calculation_information.sh +++ b/tests/results/test_namespace_examples/00_8calculation_information.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  +rougail:  + variable: example  diff --git a/tests/results/test_namespace_examples/00_8calculation_namespace.adoc b/tests/results/test_namespace_examples/00_8calculation_namespace.adoc index c3dd166cf..178a0d0f5 100644 --- a/tests/results/test_namespace_examples/00_8calculation_namespace.adoc +++ b/tests/results/test_namespace_examples/00_8calculation_namespace.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: Rougail # A variable +rougail: + variable: Rougail ---- diff --git a/tests/results/test_namespace_examples/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_examples/00_8calculation_namespace.gitlab.md index 6ea758e00..cc0637a26 100644 --- a/tests/results/test_namespace_examples/00_8calculation_namespace.gitlab.md +++ b/tests/results/test_namespace_examples/00_8calculation_namespace.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: Rougail # A variable +rougail: + variable: Rougail ``` diff --git a/tests/results/test_namespace_examples/00_8calculation_namespace.html b/tests/results/test_namespace_examples/00_8calculation_namespace.html index f70bbb538..acab90ed0 100644 --- a/tests/results/test_namespace_examples/00_8calculation_namespace.html +++ b/tests/results/test_namespace_examples/00_8calculation_namespace.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: Rougail           # A variable
\ No newline at end of file +
rougail:
+  variable: Rougail
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_8calculation_namespace.sh b/tests/results/test_namespace_examples/00_8calculation_namespace.sh index 4d13b02e7..13e479b69 100644 --- a/tests/results/test_namespace_examples/00_8calculation_namespace.sh +++ b/tests/results/test_namespace_examples/00_8calculation_namespace.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: Rougail # A variable  +rougail:  + variable: Rougail  diff --git a/tests/results/test_namespace_examples/00_8calculation_param_namespace.adoc b/tests/results/test_namespace_examples/00_8calculation_param_namespace.adoc index c3dd166cf..178a0d0f5 100644 --- a/tests/results/test_namespace_examples/00_8calculation_param_namespace.adoc +++ b/tests/results/test_namespace_examples/00_8calculation_param_namespace.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: Rougail # A variable +rougail: + variable: Rougail ---- diff --git a/tests/results/test_namespace_examples/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_examples/00_8calculation_param_namespace.gitlab.md index 6ea758e00..cc0637a26 100644 --- a/tests/results/test_namespace_examples/00_8calculation_param_namespace.gitlab.md +++ b/tests/results/test_namespace_examples/00_8calculation_param_namespace.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: Rougail # A variable +rougail: + variable: Rougail ``` diff --git a/tests/results/test_namespace_examples/00_8calculation_param_namespace.html b/tests/results/test_namespace_examples/00_8calculation_param_namespace.html index f70bbb538..acab90ed0 100644 --- a/tests/results/test_namespace_examples/00_8calculation_param_namespace.html +++ b/tests/results/test_namespace_examples/00_8calculation_param_namespace.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: Rougail           # A variable
\ No newline at end of file +
rougail:
+  variable: Rougail
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_8calculation_param_namespace.sh b/tests/results/test_namespace_examples/00_8calculation_param_namespace.sh index 4d13b02e7..13e479b69 100644 --- a/tests/results/test_namespace_examples/00_8calculation_param_namespace.sh +++ b/tests/results/test_namespace_examples/00_8calculation_param_namespace.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: Rougail # A variable  +rougail:  + variable: Rougail  diff --git a/tests/results/test_namespace_examples/00_8test.adoc b/tests/results/test_namespace_examples/00_8test.adoc index 6a32f60e7..c3191833e 100644 --- a/tests/results/test_namespace_examples/00_8test.adoc +++ b/tests/results/test_namespace_examples/00_8test.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - var1: test # The first variable - var3: test1 # The third variable - var6: # The sixth variable +rougail: + var1: test + var3: test1 + var6: - test1 - test2 ---- @@ -15,13 +15,13 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var1: test # The first variable - var2: test # The second variable - var3: test1 # The third variable - var4: # The forth variable - var5: false # The fifth variable - var6: # The sixth variable +rougail: + var1: test + var2: test + var3: test1 + var4: + var5: false + var6: - test1 - test2 ---- diff --git a/tests/results/test_namespace_examples/00_8test.gitlab.md b/tests/results/test_namespace_examples/00_8test.gitlab.md index fcec60b53..f03ae6a2f 100644 --- a/tests/results/test_namespace_examples/00_8test.gitlab.md +++ b/tests/results/test_namespace_examples/00_8test.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var1: test # The first variable - var3: test1 # The third variable - var6: # The sixth variable +rougail: + var1: test + var3: test1 + var6: - test1 - test2 ``` @@ -15,13 +15,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: test # The first variable - var2: test # The second variable - var3: test1 # The third variable - var4: # The forth variable - var5: false # The fifth variable - var6: # The sixth variable +rougail: + var1: test + var2: test + var3: test1 + var4: + var5: false + var6: - test1 - test2 ``` diff --git a/tests/results/test_namespace_examples/00_8test.html b/tests/results/test_namespace_examples/00_8test.html index 8111f361c..6d54a0aff 100644 --- a/tests/results/test_namespace_examples/00_8test.html +++ b/tests/results/test_namespace_examples/00_8test.html @@ -1,18 +1,18 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: test                  # The first variable
-  var3: test1                 # The third variable
-  var6:                       # The sixth variable
+
rougail:
+  var1: test
+  var3: test1
+  var6:
     - test1
     - test2

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: test                  # The first variable
-  var2: test                  # The second variable
-  var3: test1                 # The third variable
-  var4:                       # The forth variable
-  var5: false                 # The fifth variable
-  var6:                       # The sixth variable
+
rougail:
+  var1: test
+  var2: test
+  var3: test1
+  var4:
+  var5: false
+  var6:
     - test1
     - test2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_8test.sh b/tests/results/test_namespace_examples/00_8test.sh index a63bd7bb9..685644e1a 100644 --- a/tests/results/test_namespace_examples/00_8test.sh +++ b/tests/results/test_namespace_examples/00_8test.sh @@ -1,29 +1,23 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: test # The first variable  - var3: test1 # The third variable  - var6: # The sixth variable  +rougail:  + var1: test  + var3: test1  + var6:   - test1   - test2  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: test # The first variable  - var2: test # The second variable  - var3: test1 # The third variable  - var4: # The forth variable  - var5: false # The fifth variable  - var6: # The sixth variable  +rougail:  + var1: test  + var2: test  + var3: test1  + var4:  + var5: false  + var6:   - test1   - test2  diff --git a/tests/results/test_namespace_examples/00_9choice_variable_multi.adoc b/tests/results/test_namespace_examples/00_9choice_variable_multi.adoc index 9f5ef8d39..027d52e27 100644 --- a/tests/results/test_namespace_examples/00_9choice_variable_multi.adoc +++ b/tests/results/test_namespace_examples/00_9choice_variable_multi.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a_choice ---- == Example with all variables modifiable @@ -12,9 +12,9 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a_choice - variable2: # A second variable + variable2: - a_choice ---- diff --git a/tests/results/test_namespace_examples/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_examples/00_9choice_variable_multi.gitlab.md index 1c4b9d15b..3870a244a 100644 --- a/tests/results/test_namespace_examples/00_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace_examples/00_9choice_variable_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a_choice ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a_choice - variable2: # A second variable + variable2: - a_choice ``` diff --git a/tests/results/test_namespace_examples/00_9choice_variable_multi.html b/tests/results/test_namespace_examples/00_9choice_variable_multi.html index a597799dc..6e0803090 100644 --- a/tests/results/test_namespace_examples/00_9choice_variable_multi.html +++ b/tests/results/test_namespace_examples/00_9choice_variable_multi.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable1:                  # A first variable
+
rougail:
+  variable1:
     - a_choice

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable1:                  # A first variable
+
rougail:
+  variable1:
     - a_choice
-  variable2:                  # A second variable
+  variable2:
     - a_choice
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9choice_variable_multi.sh b/tests/results/test_namespace_examples/00_9choice_variable_multi.sh index ce37e6e67..2269ba89e 100644 --- a/tests/results/test_namespace_examples/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace_examples/00_9choice_variable_multi.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable1: # A first variable  +rougail:  + variable1:   - a_choice  - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable1: # A first variable  +rougail:  + variable1:   - a_choice  - variable2: # A second variable  + variable2:   - a_choice  diff --git a/tests/results/test_namespace_examples/00_9choice_variables.adoc b/tests/results/test_namespace_examples/00_9choice_variables.adoc index 980c5299c..7a0c9340a 100644 --- a/tests/results/test_namespace_examples/00_9choice_variables.adoc +++ b/tests/results/test_namespace_examples/00_9choice_variables.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - source_variable_1: val1 # The first source variable - source_variable_2: val2 # The second source variable - my_variable: val1 # A variable +rougail: + source_variable_1: val1 + source_variable_2: val2 + my_variable: val1 ---- diff --git a/tests/results/test_namespace_examples/00_9choice_variables.gitlab.md b/tests/results/test_namespace_examples/00_9choice_variables.gitlab.md index 62b698ba2..dede5fe46 100644 --- a/tests/results/test_namespace_examples/00_9choice_variables.gitlab.md +++ b/tests/results/test_namespace_examples/00_9choice_variables.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - source_variable_1: val1 # The first source variable - source_variable_2: val2 # The second source variable - my_variable: val1 # A variable +rougail: + source_variable_1: val1 + source_variable_2: val2 + my_variable: val1 ``` diff --git a/tests/results/test_namespace_examples/00_9choice_variables.html b/tests/results/test_namespace_examples/00_9choice_variables.html index 278aaa3a4..728ea3ae4 100644 --- a/tests/results/test_namespace_examples/00_9choice_variables.html +++ b/tests/results/test_namespace_examples/00_9choice_variables.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  source_variable_1: val1     # The first source variable
-  source_variable_2: val2     # The second source variable
-  my_variable: val1           # A variable
\ No newline at end of file +
rougail:
+  source_variable_1: val1
+  source_variable_2: val2
+  my_variable: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9choice_variables.sh b/tests/results/test_namespace_examples/00_9choice_variables.sh index 20acaa148..0cf8257ce 100644 --- a/tests/results/test_namespace_examples/00_9choice_variables.sh +++ b/tests/results/test_namespace_examples/00_9choice_variables.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - source_variable_1: val1 # The first source variable  - source_variable_2: val2 # The second source variable  - my_variable: val1 # A variable  +rougail:  + source_variable_1: val1  + source_variable_2: val2  + my_variable: val1  diff --git a/tests/results/test_namespace_examples/00_9default_calculation.adoc b/tests/results/test_namespace_examples/00_9default_calculation.adoc index 70b4e8860..73052a66b 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: string_1_True_None # A variable +rougail: + variable: string_1_True_None ---- diff --git a/tests/results/test_namespace_examples/00_9default_calculation.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation.gitlab.md index 88f7d51d1..dddaa7c77 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: string_1_True_None # A variable +rougail: + variable: string_1_True_None ``` diff --git a/tests/results/test_namespace_examples/00_9default_calculation.html b/tests/results/test_namespace_examples/00_9default_calculation.html index ac9665437..bdd1732d3 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation.html +++ b/tests/results/test_namespace_examples/00_9default_calculation.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: string_1_True_None # A variable
\ No newline at end of file +
rougail:
+  variable: string_1_True_None
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation.sh b/tests/results/test_namespace_examples/00_9default_calculation.sh index d5ed69cfa..aae49ac73 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: string_1_True_None # A variable  +rougail:  + variable: string_1_True_None  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information.adoc b/tests/results/test_namespace_examples/00_9default_calculation_information.adoc index 1ce76f726..ce3eaf48a 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_information.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: example # A variable +rougail: + var: example ---- diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_information.gitlab.md index f451f2336..0de80aae1 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_information.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: example # A variable +rougail: + var: example ``` diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information.html b/tests/results/test_namespace_examples/00_9default_calculation_information.html index 3edcf77f2..1ed4d660a 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_information.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: example                # A variable
\ No newline at end of file +
rougail:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information.sh b/tests/results/test_namespace_examples/00_9default_calculation_information.sh index 33414af3f..5aee04b80 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_information.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: example # A variable  +rougail:  + var: example  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.adoc b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.adoc index f2be9ae13..ca248e479 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.gitlab.md index be9fe90f6..f0182cd76 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.html b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.html index 4671f759b..0b0370b58 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A first variable

Example with all variables modifiable

+
rougail:
+  var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.sh index f73e92b95..5950dc76b 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A first variable  - - +rougail:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.adoc b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.adoc index 200e9124a..61bc74479 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.gitlab.md index 9f65914d7..cf2266464 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.html b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.html index ebf4fd005..db47275c6 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   my_variable: val1
   my_calculated_variable:
     - val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.sh index 9d0779a63..67738eb05 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  +rougail:   my_variable: val1   my_calculated_variable:   - val1  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.adoc index 200e9124a..61bc74479 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.gitlab.md index 9f65914d7..cf2266464 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.html b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.html index ebf4fd005..db47275c6 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   my_variable: val1
   my_calculated_variable:
     - val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.sh index 9d0779a63..67738eb05 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  +rougail:   my_variable: val1   my_calculated_variable:   - val1  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.adoc index 2dd25a5be..94e96ccf0 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.gitlab.md index c1b3e79e0..e0581527e 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -rougail: # Rougail +rougail: my_variable: val1 my_calculated_variable: - val1 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.html b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.html index 5532da06a..aabee35c8 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   my_variable: val1
   my_calculated_variable:
     - val1
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.sh
index f774d4f0d..fe72b3185 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.sh
+++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional_default.sh
@@ -1,10 +1,7 @@
-
-
 Example with all variables modifiable
 
-
 ---                                                                             
-rougail:                      # Rougail                                         
+rougail:                                                                        
   my_variable: val1                                                             
   my_calculated_variable:                                                       
     - val1                                                                      
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional.adoc b/tests/results/test_namespace_examples/00_9default_calculation_optional.adoc
index 6a20cb64d..a80976836 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_optional.adoc
+++ b/tests/results/test_namespace_examples/00_9default_calculation_optional.adoc
@@ -3,7 +3,7 @@
 [,yaml]
 ----
 ---
-rougail:                      # Rougail
+rougail:
   my_calculated_variable:
     - example
 ----
@@ -12,7 +12,7 @@ rougail:                      # Rougail
 [,yaml]
 ----
 ---
-rougail:                      # Rougail
+rougail:
   my_calculated_variable:
     - example
 ----
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_optional.gitlab.md
index e905b9d61..e59da85f0 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_examples/00_9default_calculation_optional.gitlab.md
@@ -2,7 +2,7 @@
 
 ```yaml
 ---
-rougail:                      # Rougail
+rougail:
   my_calculated_variable:
     - example
 ```
@@ -12,7 +12,7 @@ rougail:                      # Rougail
 
 ```yaml
 ---
-rougail:                      # Rougail
+rougail:
   my_calculated_variable:
     - example
 ```
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional.html b/tests/results/test_namespace_examples/00_9default_calculation_optional.html
index acd9734ea..f9ec3e52e 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_optional.html
+++ b/tests/results/test_namespace_examples/00_9default_calculation_optional.html
@@ -1,9 +1,9 @@
 

Example with mandatory variables not filled in

-
rougail:                      # Rougail
+
rougail:
   my_calculated_variable:
     - example

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   my_calculated_variable:
     - example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional.sh b/tests/results/test_namespace_examples/00_9default_calculation_optional.sh index fad13a810..d0ca47fb1 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  +rougail:   my_calculated_variable:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  +rougail:   my_calculated_variable:   - example  diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.adoc b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.adoc index 567268c39..47912fe3c 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail +rougail: my_variable: - val1 - val2 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.gitlab.md index 301c2724d..9da649d5e 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.gitlab.md @@ -2,7 +2,7 @@ ```yaml --- -rougail: # Rougail +rougail: my_variable: - val1 - val2 diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.html b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.html index 9ed6a6c05..f096f0388 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.html +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
+
rougail:
   my_variable:
     - val1
     - val2
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.sh
index 6d496c2cd..6efdd1757 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.sh
+++ b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.sh
@@ -1,10 +1,7 @@
-
-
 Example with all variables modifiable
 
-
 ---                                                                             
-rougail:                      # Rougail                                         
+rougail:                                                                        
   my_variable:                                                                  
     - val1                                                                      
     - val2                                                                      
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.adoc b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.adoc
index 47e2cd54f..0435452cb 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.adoc
+++ b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.adoc
@@ -3,7 +3,7 @@
 [,yaml]
 ----
 ---
-rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: no                    # A second variable
+rougail:
+  var1: no
+  var2: no
 ----
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.gitlab.md
index c485e0eeb..05a9aa871 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.gitlab.md
@@ -2,9 +2,9 @@
 
 ```yaml
 ---
-rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: no                    # A second variable
+rougail:
+  var1: no
+  var2: no
 ```
 
 
diff --git a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.html b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.html
index e1086734e..ca1b94c90 100644
--- a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.html
+++ b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.html
@@ -1,5 +1,5 @@
 

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.sh index be87b523e..111cca59d 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.sh +++ b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable.adoc b/tests/results/test_namespace_examples/00_9default_information_other_variable.adoc index f2be9ae13..ca248e479 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable.adoc +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_examples/00_9default_information_other_variable.gitlab.md index be9fe90f6..f0182cd76 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable.html b/tests/results/test_namespace_examples/00_9default_information_other_variable.html index 4671f759b..0b0370b58 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable.html +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A first variable

Example with all variables modifiable

+
rougail:
+  var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable.sh b/tests/results/test_namespace_examples/00_9default_information_other_variable.sh index f73e92b95..5950dc76b 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A first variable  - - +rougail:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable2.adoc b/tests/results/test_namespace_examples/00_9default_information_other_variable2.adoc index f2be9ae13..ca248e479 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable2.adoc +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable2.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_examples/00_9default_information_other_variable2.gitlab.md index be9fe90f6..f0182cd76 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable2.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: example # A first variable +rougail: + var1: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # A first variable - var2: example # A second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable2.html b/tests/results/test_namespace_examples/00_9default_information_other_variable2.html index 4671f759b..0b0370b58 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable2.html +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable2.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # A first variable

Example with all variables modifiable

+
rougail:
+  var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable2.sh b/tests/results/test_namespace_examples/00_9default_information_other_variable2.sh index f73e92b95..5950dc76b 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable2.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # A first variable  - - +rougail:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/00_9default_integer.adoc b/tests/results/test_namespace_examples/00_9default_integer.adoc index 4e39cd408..44fabe0d0 100644 --- a/tests/results/test_namespace_examples/00_9default_integer.adoc +++ b/tests/results/test_namespace_examples/00_9default_integer.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ---- diff --git a/tests/results/test_namespace_examples/00_9default_integer.gitlab.md b/tests/results/test_namespace_examples/00_9default_integer.gitlab.md index ff853dfde..6b3020aa8 100644 --- a/tests/results/test_namespace_examples/00_9default_integer.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_integer.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ``` diff --git a/tests/results/test_namespace_examples/00_9default_integer.html b/tests/results/test_namespace_examples/00_9default_integer.html index 79ed489b1..2849e2cca 100644 --- a/tests/results/test_namespace_examples/00_9default_integer.html +++ b/tests/results/test_namespace_examples/00_9default_integer.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: 9                      # A variable
\ No newline at end of file +
rougail:
+  var: 9
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_integer.sh b/tests/results/test_namespace_examples/00_9default_integer.sh index b89e54313..38f60c29e 100644 --- a/tests/results/test_namespace_examples/00_9default_integer.sh +++ b/tests/results/test_namespace_examples/00_9default_integer.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: 9 # A variable  +rougail:  + var: 9  diff --git a/tests/results/test_namespace_examples/00_9default_number.adoc b/tests/results/test_namespace_examples/00_9default_number.adoc index 4e39cd408..44fabe0d0 100644 --- a/tests/results/test_namespace_examples/00_9default_number.adoc +++ b/tests/results/test_namespace_examples/00_9default_number.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ---- diff --git a/tests/results/test_namespace_examples/00_9default_number.gitlab.md b/tests/results/test_namespace_examples/00_9default_number.gitlab.md index ff853dfde..6b3020aa8 100644 --- a/tests/results/test_namespace_examples/00_9default_number.gitlab.md +++ b/tests/results/test_namespace_examples/00_9default_number.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: 9 # A variable +rougail: + var: 9 ``` diff --git a/tests/results/test_namespace_examples/00_9default_number.html b/tests/results/test_namespace_examples/00_9default_number.html index 79ed489b1..2849e2cca 100644 --- a/tests/results/test_namespace_examples/00_9default_number.html +++ b/tests/results/test_namespace_examples/00_9default_number.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: 9                      # A variable
\ No newline at end of file +
rougail:
+  var: 9
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9default_number.sh b/tests/results/test_namespace_examples/00_9default_number.sh index b89e54313..38f60c29e 100644 --- a/tests/results/test_namespace_examples/00_9default_number.sh +++ b/tests/results/test_namespace_examples/00_9default_number.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: 9 # A variable  +rougail:  + var: 9  diff --git a/tests/results/test_namespace_examples/00_9extra.adoc b/tests/results/test_namespace_examples/00_9extra.adoc index 147073d31..cb750800b 100644 --- a/tests/results/test_namespace_examples/00_9extra.adoc +++ b/tests/results/test_namespace_examples/00_9extra.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - variable: rougail # A variable -extra: # Extra - variable: no # A variable +rougail: + variable: rougail +extra: + variable: no ---- diff --git a/tests/results/test_namespace_examples/00_9extra.gitlab.md b/tests/results/test_namespace_examples/00_9extra.gitlab.md index 48bd37d5d..5f3887293 100644 --- a/tests/results/test_namespace_examples/00_9extra.gitlab.md +++ b/tests/results/test_namespace_examples/00_9extra.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - variable: rougail # A variable -extra: # Extra - variable: no # A variable +rougail: + variable: rougail +extra: + variable: no ``` diff --git a/tests/results/test_namespace_examples/00_9extra.html b/tests/results/test_namespace_examples/00_9extra.html index 53279625d..e1a9d012c 100644 --- a/tests/results/test_namespace_examples/00_9extra.html +++ b/tests/results/test_namespace_examples/00_9extra.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: rougail           # A variable
-extra:                        # Extra
-  variable: no                # A variable
\ No newline at end of file +
rougail:
+  variable: rougail
+extra:
+  variable: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9extra.sh b/tests/results/test_namespace_examples/00_9extra.sh index 88a9a7ac2..bf7a53159 100644 --- a/tests/results/test_namespace_examples/00_9extra.sh +++ b/tests/results/test_namespace_examples/00_9extra.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: rougail # A variable  -extra: # Extra  - variable: no # A variable  +rougail:  + variable: rougail  +extra:  + variable: no  diff --git a/tests/results/test_namespace_examples/00_9extra_calculation.adoc b/tests/results/test_namespace_examples/00_9extra_calculation.adoc index b991b90f9..9a10a35af 100644 --- a/tests/results/test_namespace_examples/00_9extra_calculation.adoc +++ b/tests/results/test_namespace_examples/00_9extra_calculation.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - variable: value # A variable -extra: # Extra - variable1: value # A first variable - variable2: value # A second variable - variable3: value # A third variable +rougail: + variable: value +extra: + variable1: value + variable2: value + variable3: value ---- diff --git a/tests/results/test_namespace_examples/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_examples/00_9extra_calculation.gitlab.md index 9667bf577..4e3131739 100644 --- a/tests/results/test_namespace_examples/00_9extra_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/00_9extra_calculation.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - variable: value # A variable -extra: # Extra - variable1: value # A first variable - variable2: value # A second variable - variable3: value # A third variable +rougail: + variable: value +extra: + variable1: value + variable2: value + variable3: value ``` diff --git a/tests/results/test_namespace_examples/00_9extra_calculation.html b/tests/results/test_namespace_examples/00_9extra_calculation.html index 8fe67e7a9..085c863a6 100644 --- a/tests/results/test_namespace_examples/00_9extra_calculation.html +++ b/tests/results/test_namespace_examples/00_9extra_calculation.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: value             # A variable
-extra:                        # Extra
-  variable1: value            # A first variable
-  variable2: value            # A second variable
-  variable3: value            # A third variable
\ No newline at end of file +
rougail:
+  variable: value
+extra:
+  variable1: value
+  variable2: value
+  variable3: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9extra_calculation.sh b/tests/results/test_namespace_examples/00_9extra_calculation.sh index 8be42ef3e..9f6f6c682 100644 --- a/tests/results/test_namespace_examples/00_9extra_calculation.sh +++ b/tests/results/test_namespace_examples/00_9extra_calculation.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: value # A variable  -extra: # Extra  - variable1: value # A first variable  - variable2: value # A second variable  - variable3: value # A third variable  +rougail:  + variable: value  +extra:  + variable1: value  + variable2: value  + variable3: value  diff --git a/tests/results/test_namespace_examples/00_9extra_ouside.adoc b/tests/results/test_namespace_examples/00_9extra_ouside.adoc index d8b2b39ec..74a1dbb57 100644 --- a/tests/results/test_namespace_examples/00_9extra_ouside.adoc +++ b/tests/results/test_namespace_examples/00_9extra_ouside.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - variable: value in extra # A variable -extra: # Extra - variable: value in extra # A variable +rougail: + variable: value in extra +extra: + variable: value in extra ---- diff --git a/tests/results/test_namespace_examples/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_examples/00_9extra_ouside.gitlab.md index cda55625f..2369910bf 100644 --- a/tests/results/test_namespace_examples/00_9extra_ouside.gitlab.md +++ b/tests/results/test_namespace_examples/00_9extra_ouside.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - variable: value in extra # A variable -extra: # Extra - variable: value in extra # A variable +rougail: + variable: value in extra +extra: + variable: value in extra ``` diff --git a/tests/results/test_namespace_examples/00_9extra_ouside.html b/tests/results/test_namespace_examples/00_9extra_ouside.html index db1c8b048..86ce6a6d6 100644 --- a/tests/results/test_namespace_examples/00_9extra_ouside.html +++ b/tests/results/test_namespace_examples/00_9extra_ouside.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: value in extra    # A variable
-extra:                        # Extra
-  variable: value in extra    # A variable
\ No newline at end of file +
rougail:
+  variable: value in extra
+extra:
+  variable: value in extra
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/00_9extra_ouside.sh b/tests/results/test_namespace_examples/00_9extra_ouside.sh index cc2faa17a..8148cb736 100644 --- a/tests/results/test_namespace_examples/00_9extra_ouside.sh +++ b/tests/results/test_namespace_examples/00_9extra_ouside.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: value in extra # A variable  -extra: # Extra  - variable: value in extra # A variable  +rougail:  + variable: value in extra  +extra:  + variable: value in extra  diff --git a/tests/results/test_namespace_examples/01_6boolean_multi.adoc b/tests/results/test_namespace_examples/01_6boolean_multi.adoc index 43b4659c4..ac44db176 100644 --- a/tests/results/test_namespace_examples/01_6boolean_multi.adoc +++ b/tests/results/test_namespace_examples/01_6boolean_multi.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - true - var2: # The second variable + var2: - true - var3: # The third variable + var3: - true - var4: # The forth variable + var4: - false - var5: # The fifth variable + var5: - false - var6: # The sixth variable + var6: - false - var7: # The seventh variable + var7: - true - var8: # The eighth variable + var8: - true ---- diff --git a/tests/results/test_namespace_examples/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_examples/01_6boolean_multi.gitlab.md index e37b98074..c707e11f7 100644 --- a/tests/results/test_namespace_examples/01_6boolean_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_6boolean_multi.gitlab.md @@ -2,22 +2,22 @@ ```yaml --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - true - var2: # The second variable + var2: - true - var3: # The third variable + var3: - true - var4: # The forth variable + var4: - false - var5: # The fifth variable + var5: - false - var6: # The sixth variable + var6: - false - var7: # The seventh variable + var7: - true - var8: # The eighth variable + var8: - true ``` diff --git a/tests/results/test_namespace_examples/01_6boolean_multi.html b/tests/results/test_namespace_examples/01_6boolean_multi.html index 04ab52ba9..b171fd59d 100644 --- a/tests/results/test_namespace_examples/01_6boolean_multi.html +++ b/tests/results/test_namespace_examples/01_6boolean_multi.html @@ -1,19 +1,19 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The first variable
+
rougail:
+  var1:
     - true
-  var2:                       # The second variable
+  var2:
     - true
-  var3:                       # The third variable
+  var3:
     - true
-  var4:                       # The forth variable
+  var4:
     - false
-  var5:                       # The fifth variable
+  var5:
     - false
-  var6:                       # The sixth variable
+  var6:
     - false
-  var7:                       # The seventh variable
+  var7:
     - true
-  var8:                       # The eighth variable
+  var8:
     - true
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6boolean_multi.sh b/tests/results/test_namespace_examples/01_6boolean_multi.sh index fb381d789..751716720 100644 --- a/tests/results/test_namespace_examples/01_6boolean_multi.sh +++ b/tests/results/test_namespace_examples/01_6boolean_multi.sh @@ -1,24 +1,21 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The first variable  +rougail:  + var1:   - true  - var2: # The second variable  + var2:   - true  - var3: # The third variable  + var3:   - true  - var4: # The forth variable  + var4:   - false  - var5: # The fifth variable  + var5:   - false  - var6: # The sixth variable  + var6:   - false  - var7: # The seventh variable  + var7:   - true  - var8: # The eighth variable  + var8:   - true  diff --git a/tests/results/test_namespace_examples/01_6custom_multi.adoc b/tests/results/test_namespace_examples/01_6custom_multi.adoc index 2c632b339..fe7215109 100644 --- a/tests/results/test_namespace_examples/01_6custom_multi.adoc +++ b/tests/results/test_namespace_examples/01_6custom_multi.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - custom1: # A first custom variable +rougail: + custom1: - xxx ---- == Example with all variables modifiable @@ -12,9 +12,9 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - custom1: # A first custom variable +rougail: + custom1: - xxx - custom2: # A second custom variable + custom2: - value ---- diff --git a/tests/results/test_namespace_examples/01_6custom_multi.gitlab.md b/tests/results/test_namespace_examples/01_6custom_multi.gitlab.md index 430ea29e0..984919ad4 100644 --- a/tests/results/test_namespace_examples/01_6custom_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_6custom_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - custom1: # A first custom variable +rougail: + custom1: - xxx ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - custom1: # A first custom variable +rougail: + custom1: - xxx - custom2: # A second custom variable + custom2: - value ``` diff --git a/tests/results/test_namespace_examples/01_6custom_multi.html b/tests/results/test_namespace_examples/01_6custom_multi.html index 351597ec6..37504de37 100644 --- a/tests/results/test_namespace_examples/01_6custom_multi.html +++ b/tests/results/test_namespace_examples/01_6custom_multi.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  custom1:                    # A first custom variable
+
rougail:
+  custom1:
     - xxx

Example with all variables modifiable

-
rougail:                      # Rougail
-  custom1:                    # A first custom variable
+
rougail:
+  custom1:
     - xxx
-  custom2:                    # A second custom variable
+  custom2:
     - value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6custom_multi.sh b/tests/results/test_namespace_examples/01_6custom_multi.sh index 55e3b07e1..fba5d05fd 100644 --- a/tests/results/test_namespace_examples/01_6custom_multi.sh +++ b/tests/results/test_namespace_examples/01_6custom_multi.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - custom1: # A first custom variable  +rougail:  + custom1:   - xxx  - - Example with all variables modifiable - ---  -rougail: # Rougail  - custom1: # A first custom variable  +rougail:  + custom1:   - xxx  - custom2: # A second custom variable  + custom2:   - value  diff --git a/tests/results/test_namespace_examples/01_6float_multi.adoc b/tests/results/test_namespace_examples/01_6float_multi.adoc index 098840326..dd734ece8 100644 --- a/tests/results/test_namespace_examples/01_6float_multi.adoc +++ b/tests/results/test_namespace_examples/01_6float_multi.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - 0.0 - var2: # The second variable + var2: - 0.0 - var3: # The third variable + var3: - 0.0 - var4: # The forth variable + var4: - 10.1 - var5: # The fifth variable + var5: - 10.1 - var6: # The sixth variable + var6: - 10.1 - var7: # The seventh variable + var7: - 0.0 - var8: # The eighth variable + var8: - 0.0 ---- diff --git a/tests/results/test_namespace_examples/01_6float_multi.gitlab.md b/tests/results/test_namespace_examples/01_6float_multi.gitlab.md index aa4f24017..b951c2b53 100644 --- a/tests/results/test_namespace_examples/01_6float_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_6float_multi.gitlab.md @@ -2,22 +2,22 @@ ```yaml --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - 0.0 - var2: # The second variable + var2: - 0.0 - var3: # The third variable + var3: - 0.0 - var4: # The forth variable + var4: - 10.1 - var5: # The fifth variable + var5: - 10.1 - var6: # The sixth variable + var6: - 10.1 - var7: # The seventh variable + var7: - 0.0 - var8: # The eighth variable + var8: - 0.0 ``` diff --git a/tests/results/test_namespace_examples/01_6float_multi.html b/tests/results/test_namespace_examples/01_6float_multi.html index f1fa0f526..4eff4290f 100644 --- a/tests/results/test_namespace_examples/01_6float_multi.html +++ b/tests/results/test_namespace_examples/01_6float_multi.html @@ -1,19 +1,19 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The first variable
+
rougail:
+  var1:
     - 0.0
-  var2:                       # The second variable
+  var2:
     - 0.0
-  var3:                       # The third variable
+  var3:
     - 0.0
-  var4:                       # The forth variable
+  var4:
     - 10.1
-  var5:                       # The fifth variable
+  var5:
     - 10.1
-  var6:                       # The sixth variable
+  var6:
     - 10.1
-  var7:                       # The seventh variable
+  var7:
     - 0.0
-  var8:                       # The eighth variable
+  var8:
     - 0.0
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6float_multi.sh b/tests/results/test_namespace_examples/01_6float_multi.sh index 6b6f76f51..18951223f 100644 --- a/tests/results/test_namespace_examples/01_6float_multi.sh +++ b/tests/results/test_namespace_examples/01_6float_multi.sh @@ -1,24 +1,21 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The first variable  +rougail:  + var1:   - 0.0  - var2: # The second variable  + var2:   - 0.0  - var3: # The third variable  + var3:   - 0.0  - var4: # The forth variable  + var4:   - 10.1  - var5: # The fifth variable  + var5:   - 10.1  - var6: # The sixth variable  + var6:   - 10.1  - var7: # The seventh variable  + var7:   - 0.0  - var8: # The eighth variable  + var8:   - 0.0  diff --git a/tests/results/test_namespace_examples/01_6integer_multi.adoc b/tests/results/test_namespace_examples/01_6integer_multi.adoc index 914d5b3b5..f40acdb3c 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi.adoc +++ b/tests/results/test_namespace_examples/01_6integer_multi.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - 0 - var2: # The second variable + var2: - 0 - var3: # The third variable + var3: - 0 - var4: # The forth variable + var4: - 10 - var5: # The fifth variable + var5: - 10 - var6: # The sixth variable + var6: - 10 - var7: # The seventh variable + var7: - 0 - var8: # The eighth variable + var8: - 0 ---- diff --git a/tests/results/test_namespace_examples/01_6integer_multi.gitlab.md b/tests/results/test_namespace_examples/01_6integer_multi.gitlab.md index c197207de..07c7b3d29 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_6integer_multi.gitlab.md @@ -2,22 +2,22 @@ ```yaml --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - 0 - var2: # The second variable + var2: - 0 - var3: # The third variable + var3: - 0 - var4: # The forth variable + var4: - 10 - var5: # The fifth variable + var5: - 10 - var6: # The sixth variable + var6: - 10 - var7: # The seventh variable + var7: - 0 - var8: # The eighth variable + var8: - 0 ``` diff --git a/tests/results/test_namespace_examples/01_6integer_multi.html b/tests/results/test_namespace_examples/01_6integer_multi.html index 55c144e18..548013b2a 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi.html +++ b/tests/results/test_namespace_examples/01_6integer_multi.html @@ -1,19 +1,19 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The first variable
+
rougail:
+  var1:
     - 0
-  var2:                       # The second variable
+  var2:
     - 0
-  var3:                       # The third variable
+  var3:
     - 0
-  var4:                       # The forth variable
+  var4:
     - 10
-  var5:                       # The fifth variable
+  var5:
     - 10
-  var6:                       # The sixth variable
+  var6:
     - 10
-  var7:                       # The seventh variable
+  var7:
     - 0
-  var8:                       # The eighth variable
+  var8:
     - 0
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6integer_multi.sh b/tests/results/test_namespace_examples/01_6integer_multi.sh index 89fce4841..0e4f275f5 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi.sh +++ b/tests/results/test_namespace_examples/01_6integer_multi.sh @@ -1,24 +1,21 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The first variable  +rougail:  + var1:   - 0  - var2: # The second variable  + var2:   - 0  - var3: # The third variable  + var3:   - 0  - var4: # The forth variable  + var4:   - 10  - var5: # The fifth variable  + var5:   - 10  - var6: # The sixth variable  + var6:   - 10  - var7: # The seventh variable  + var7:   - 0  - var8: # The eighth variable  + var8:   - 0  diff --git a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.adoc b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.adoc index 3ed764d43..88219cebe 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var: # The first variable +rougail: + var: - 42 ---- == Example with all variables modifiable @@ -12,7 +12,7 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var: # The first variable +rougail: + var: - 42 ---- diff --git a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.gitlab.md index 2d4f86192..57e453b50 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.gitlab.md +++ b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: # The first variable +rougail: + var: - 42 ``` @@ -12,8 +12,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # The first variable +rougail: + var: - 42 ``` diff --git a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.html b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.html index 0fb77f84d..f7192acf2 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.html +++ b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var:                        # The first variable
+
rougail:
+  var:
     - 42

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # The first variable
+
rougail:
+  var:
     - 42
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.sh index 88de9fdcd..6a6deac4c 100644 --- a/tests/results/test_namespace_examples/01_6integer_multi_mandatory.sh +++ b/tests/results/test_namespace_examples/01_6integer_multi_mandatory.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: # The first variable  +rougail:  + var:   - 42  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # The first variable  +rougail:  + var:   - 42  diff --git a/tests/results/test_namespace_examples/01_6string_empty.adoc b/tests/results/test_namespace_examples/01_6string_empty.adoc index df979c3c7..dfa2690dd 100644 --- a/tests/results/test_namespace_examples/01_6string_empty.adoc +++ b/tests/results/test_namespace_examples/01_6string_empty.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The second variable +rougail: + var1: - value - ---- diff --git a/tests/results/test_namespace_examples/01_6string_empty.gitlab.md b/tests/results/test_namespace_examples/01_6string_empty.gitlab.md index 2c44bf0cc..18ae7ebdc 100644 --- a/tests/results/test_namespace_examples/01_6string_empty.gitlab.md +++ b/tests/results/test_namespace_examples/01_6string_empty.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # The second variable +rougail: + var1: - value - ``` diff --git a/tests/results/test_namespace_examples/01_6string_empty.html b/tests/results/test_namespace_examples/01_6string_empty.html index ea207f03d..975813244 100644 --- a/tests/results/test_namespace_examples/01_6string_empty.html +++ b/tests/results/test_namespace_examples/01_6string_empty.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The second variable
+
rougail:
+  var1:
     - value
     -
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6string_empty.sh b/tests/results/test_namespace_examples/01_6string_empty.sh index b76c31c89..35371749d 100644 --- a/tests/results/test_namespace_examples/01_6string_empty.sh +++ b/tests/results/test_namespace_examples/01_6string_empty.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The second variable  +rougail:  + var1:   - value   -  diff --git a/tests/results/test_namespace_examples/01_6string_multi.adoc b/tests/results/test_namespace_examples/01_6string_multi.adoc index 521fffc15..0b36101c9 100644 --- a/tests/results/test_namespace_examples/01_6string_multi.adoc +++ b/tests/results/test_namespace_examples/01_6string_multi.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - example - var2: # The second variable + var2: - example - var3: # The third variable + var3: - example ---- == Example with all variables modifiable @@ -16,21 +16,21 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - example - var2: # The second variable + var2: - example - var3: # The third variable + var3: - example - var4: # The forth variable + var4: - value - var5: # The fifth variable + var5: - value - var6: # The sixth variable + var6: - value - var7: # The seventh variable + var7: - value - var8: # The eighth variable + var8: - value ---- diff --git a/tests/results/test_namespace_examples/01_6string_multi.gitlab.md b/tests/results/test_namespace_examples/01_6string_multi.gitlab.md index 1c0b20383..3903f9ef4 100644 --- a/tests/results/test_namespace_examples/01_6string_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_6string_multi.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - example - var2: # The second variable + var2: - example - var3: # The third variable + var3: - example ``` @@ -16,22 +16,22 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # The first variable +rougail: + var1: - example - var2: # The second variable + var2: - example - var3: # The third variable + var3: - example - var4: # The forth variable + var4: - value - var5: # The fifth variable + var5: - value - var6: # The sixth variable + var6: - value - var7: # The seventh variable + var7: - value - var8: # The eighth variable + var8: - value ``` diff --git a/tests/results/test_namespace_examples/01_6string_multi.html b/tests/results/test_namespace_examples/01_6string_multi.html index 839a60414..fff6d0c4e 100644 --- a/tests/results/test_namespace_examples/01_6string_multi.html +++ b/tests/results/test_namespace_examples/01_6string_multi.html @@ -1,27 +1,27 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1:                       # The first variable
+
rougail:
+  var1:
     - example
-  var2:                       # The second variable
+  var2:
     - example
-  var3:                       # The third variable
+  var3:
     - example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The first variable
+
rougail:
+  var1:
     - example
-  var2:                       # The second variable
+  var2:
     - example
-  var3:                       # The third variable
+  var3:
     - example
-  var4:                       # The forth variable
+  var4:
     - value
-  var5:                       # The fifth variable
+  var5:
     - value
-  var6:                       # The sixth variable
+  var6:
     - value
-  var7:                       # The seventh variable
+  var7:
     - value
-  var8:                       # The eighth variable
+  var8:
     - value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6string_multi.sh b/tests/results/test_namespace_examples/01_6string_multi.sh index 50a9ca68b..044ce9272 100644 --- a/tests/results/test_namespace_examples/01_6string_multi.sh +++ b/tests/results/test_namespace_examples/01_6string_multi.sh @@ -1,38 +1,32 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: # The first variable  +rougail:  + var1:   - example  - var2: # The second variable  + var2:   - example  - var3: # The third variable  + var3:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The first variable  +rougail:  + var1:   - example  - var2: # The second variable  + var2:   - example  - var3: # The third variable  + var3:   - example  - var4: # The forth variable  + var4:   - value  - var5: # The fifth variable  + var5:   - value  - var6: # The sixth variable  + var6:   - value  - var7: # The seventh variable  + var7:   - value  - var8: # The eighth variable  + var8:   - value  diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.adoc b/tests/results/test_namespace_examples/01_6string_multi_length.adoc index c35909a62..7d19f195c 100644 --- a/tests/results/test_namespace_examples/01_6string_multi_length.adoc +++ b/tests/results/test_namespace_examples/01_6string_multi_length.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # The variable +rougail: + var1: - val1 - val2 - val3 - var2: # The variable + var2: - 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 index f05092a0b..7875bfee2 100644 --- a/tests/results/test_namespace_examples/01_6string_multi_length.gitlab.md +++ b/tests/results/test_namespace_examples/01_6string_multi_length.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - var1: # The variable +rougail: + var1: - val1 - val2 - val3 - var2: # The variable + var2: - 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 index 5a45de768..2ed44977a 100644 --- a/tests/results/test_namespace_examples/01_6string_multi_length.html +++ b/tests/results/test_namespace_examples/01_6string_multi_length.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # The variable
+
rougail:
+  var1:
     - val1
     - val2
     - val3
-  var2:                       # The variable
+  var2:
     - val4
     - val5
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_6string_multi_length.sh b/tests/results/test_namespace_examples/01_6string_multi_length.sh index 6cc248e98..dffb4d288 100644 --- a/tests/results/test_namespace_examples/01_6string_multi_length.sh +++ b/tests/results/test_namespace_examples/01_6string_multi_length.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # The variable  +rougail:  + var1:   - val1   - val2   - val3  - var2: # The variable  + var2:   - val4   - val5  diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote.adoc b/tests/results/test_namespace_examples/01_7value_multi_doublequote.adoc index e23671f4b..95f937d9f 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote.adoc +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote" ---- diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_examples/01_7value_multi_doublequote.gitlab.md index 443ad5404..85a778a0e 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote.gitlab.md +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote" ``` diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote.html b/tests/results/test_namespace_examples/01_7value_multi_doublequote.html index 1371076dd..2c57837fb 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote.html +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - quote"
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote.sh b/tests/results/test_namespace_examples/01_7value_multi_doublequote.sh index 5ad4cb228..c389e24a3 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote.sh +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - quote"  diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.adoc b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.adoc index 400ad6ee3..7a0459473 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote'" ---- diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.gitlab.md index fcf85dc8f..b09fb5890 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.gitlab.md +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote'" ``` diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.html b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.html index a97f0fad7..252557918 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.html +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - quote'"
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.sh index 2ee78fb28..cf956127e 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.sh +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - quote'"  diff --git a/tests/results/test_namespace_examples/01_7value_multi_quote.adoc b/tests/results/test_namespace_examples/01_7value_multi_quote.adoc index 7ea6c76ca..9944a9f6a 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_quote.adoc +++ b/tests/results/test_namespace_examples/01_7value_multi_quote.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote' ---- diff --git a/tests/results/test_namespace_examples/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_examples/01_7value_multi_quote.gitlab.md index 537c4574e..b00c2f52e 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_quote.gitlab.md +++ b/tests/results/test_namespace_examples/01_7value_multi_quote.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - quote' ``` diff --git a/tests/results/test_namespace_examples/01_7value_multi_quote.html b/tests/results/test_namespace_examples/01_7value_multi_quote.html index 34c1fb125..12c9d3ba8 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_quote.html +++ b/tests/results/test_namespace_examples/01_7value_multi_quote.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - quote'
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_7value_multi_quote.sh b/tests/results/test_namespace_examples/01_7value_multi_quote.sh index 852613b01..62bab53ed 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_quote.sh +++ b/tests/results/test_namespace_examples/01_7value_multi_quote.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - quote'  diff --git a/tests/results/test_namespace_examples/01_8calculation_information_multi.adoc b/tests/results/test_namespace_examples/01_8calculation_information_multi.adoc index 7d30fbb7b..90fdfa657 100644 --- a/tests/results/test_namespace_examples/01_8calculation_information_multi.adoc +++ b/tests/results/test_namespace_examples/01_8calculation_information_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - example ---- diff --git a/tests/results/test_namespace_examples/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_examples/01_8calculation_information_multi.gitlab.md index f5adda468..4fdbdeb89 100644 --- a/tests/results/test_namespace_examples/01_8calculation_information_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_8calculation_information_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - example ``` diff --git a/tests/results/test_namespace_examples/01_8calculation_information_multi.html b/tests/results/test_namespace_examples/01_8calculation_information_multi.html index 86c42d32a..8f7cc2863 100644 --- a/tests/results/test_namespace_examples/01_8calculation_information_multi.html +++ b/tests/results/test_namespace_examples/01_8calculation_information_multi.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_8calculation_information_multi.sh b/tests/results/test_namespace_examples/01_8calculation_information_multi.sh index 885fe46b4..d8f56a2bb 100644 --- a/tests/results/test_namespace_examples/01_8calculation_information_multi.sh +++ b/tests/results/test_namespace_examples/01_8calculation_information_multi.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - example  diff --git a/tests/results/test_namespace_examples/01_9choice_variable_multi.adoc b/tests/results/test_namespace_examples/01_9choice_variable_multi.adoc index a2bdb8076..d792d3ac7 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_multi.adoc +++ b/tests/results/test_namespace_examples/01_9choice_variable_multi.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - variable2: a_choice # A second variable +rougail: + variable2: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a - b - c - variable2: a_choice # A second variable + variable2: a_choice ---- diff --git a/tests/results/test_namespace_examples/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_examples/01_9choice_variable_multi.gitlab.md index 17a8a3624..cfb843b17 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_multi.gitlab.md +++ b/tests/results/test_namespace_examples/01_9choice_variable_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable2: a_choice # A second variable +rougail: + variable2: a_choice ``` @@ -11,12 +11,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - a - b - c - variable2: a_choice # A second variable + variable2: a_choice ``` diff --git a/tests/results/test_namespace_examples/01_9choice_variable_multi.html b/tests/results/test_namespace_examples/01_9choice_variable_multi.html index fa95a74f0..9d5b52971 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_multi.html +++ b/tests/results/test_namespace_examples/01_9choice_variable_multi.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable2: a_choice         # A second variable

Example with all variables modifiable

+
rougail:
+  variable2: a_choice

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable1:                  # A first variable
+
rougail:
+  variable1:
     - a
     - b
     - c
-  variable2: a_choice         # A second variable
\ No newline at end of file + variable2: a_choice
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_9choice_variable_multi.sh b/tests/results/test_namespace_examples/01_9choice_variable_multi.sh index e2c17c4c3..48c5c7578 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_examples/01_9choice_variable_multi.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable2: a_choice # A second variable  - - +rougail:  + variable2: a_choice  Example with all variables modifiable - ---  -rougail: # Rougail  - variable1: # A first variable  +rougail:  + variable1:   - a   - b   - c  - variable2: a_choice # A second variable  + variable2: a_choice  diff --git a/tests/results/test_namespace_examples/01_9choice_variable_optional.adoc b/tests/results/test_namespace_examples/01_9choice_variable_optional.adoc index 54db82906..4338c60f3 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_optional.adoc +++ b/tests/results/test_namespace_examples/01_9choice_variable_optional.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: c # A variable +rougail: + variable: c ---- diff --git a/tests/results/test_namespace_examples/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_examples/01_9choice_variable_optional.gitlab.md index cf11888cb..4cb220109 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_optional.gitlab.md +++ b/tests/results/test_namespace_examples/01_9choice_variable_optional.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: c # A variable +rougail: + variable: c ``` diff --git a/tests/results/test_namespace_examples/01_9choice_variable_optional.html b/tests/results/test_namespace_examples/01_9choice_variable_optional.html index 6bf1d1cca..07898600a 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_optional.html +++ b/tests/results/test_namespace_examples/01_9choice_variable_optional.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: c                 # A variable
\ No newline at end of file +
rougail:
+  variable: c
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/01_9choice_variable_optional.sh b/tests/results/test_namespace_examples/01_9choice_variable_optional.sh index ce8cb67a2..1ad49a7db 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_optional.sh +++ b/tests/results/test_namespace_examples/01_9choice_variable_optional.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: c # A variable  +rougail:  + variable: c  diff --git a/tests/results/test_namespace_examples/02_0tags.adoc b/tests/results/test_namespace_examples/02_0tags.adoc index 940cf0d3d..4dd3bf50c 100644 --- a/tests/results/test_namespace_examples/02_0tags.adoc +++ b/tests/results/test_namespace_examples/02_0tags.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/02_0tags.gitlab.md b/tests/results/test_namespace_examples/02_0tags.gitlab.md index 0e2c00a5c..e0fd12138 100644 --- a/tests/results/test_namespace_examples/02_0tags.gitlab.md +++ b/tests/results/test_namespace_examples/02_0tags.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: example # The first variable - var2: example # The second variable +rougail: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/02_0tags.html b/tests/results/test_namespace_examples/02_0tags.html index f18ef5f81..8324ee308 100644 --- a/tests/results/test_namespace_examples/02_0tags.html +++ b/tests/results/test_namespace_examples/02_0tags.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable

Example with all variables modifiable

+
rougail:
+  var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: example               # The first variable
-  var2: example               # The second variable
\ No newline at end of file +
rougail:
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/02_0tags.sh b/tests/results/test_namespace_examples/02_0tags.sh index 742724fd8..3144faa0c 100644 --- a/tests/results/test_namespace_examples/02_0tags.sh +++ b/tests/results/test_namespace_examples/02_0tags.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  - - +rougail:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: example # The first variable  - var2: example # The second variable  +rougail:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/04_0type_param.adoc b/tests/results/test_namespace_examples/04_0type_param.adoc index 5395bf2fa..11068582f 100644 --- a/tests/results/test_namespace_examples/04_0type_param.adoc +++ b/tests/results/test_namespace_examples/04_0type_param.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - int: 10 # A limited number +rougail: + int: 10 ---- diff --git a/tests/results/test_namespace_examples/04_0type_param.gitlab.md b/tests/results/test_namespace_examples/04_0type_param.gitlab.md index 2f9cebb11..5ba2a9990 100644 --- a/tests/results/test_namespace_examples/04_0type_param.gitlab.md +++ b/tests/results/test_namespace_examples/04_0type_param.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - int: 10 # A limited number +rougail: + int: 10 ``` diff --git a/tests/results/test_namespace_examples/04_0type_param.html b/tests/results/test_namespace_examples/04_0type_param.html index 7e753cdc6..be0a2d237 100644 --- a/tests/results/test_namespace_examples/04_0type_param.html +++ b/tests/results/test_namespace_examples/04_0type_param.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  int: 10                     # A limited number
\ No newline at end of file +
rougail:
+  int: 10
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_0type_param.sh b/tests/results/test_namespace_examples/04_0type_param.sh index 98fd352c4..465927299 100644 --- a/tests/results/test_namespace_examples/04_0type_param.sh +++ b/tests/results/test_namespace_examples/04_0type_param.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - int: 10 # A limited number  +rougail:  + int: 10  diff --git a/tests/results/test_namespace_examples/04_0type_param_integer.adoc b/tests/results/test_namespace_examples/04_0type_param_integer.adoc index f2c6f2bc9..11068582f 100644 --- a/tests/results/test_namespace_examples/04_0type_param_integer.adoc +++ b/tests/results/test_namespace_examples/04_0type_param_integer.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - int: 10 # A limited integer +rougail: + int: 10 ---- diff --git a/tests/results/test_namespace_examples/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_examples/04_0type_param_integer.gitlab.md index 6f81c035a..5ba2a9990 100644 --- a/tests/results/test_namespace_examples/04_0type_param_integer.gitlab.md +++ b/tests/results/test_namespace_examples/04_0type_param_integer.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - int: 10 # A limited integer +rougail: + int: 10 ``` diff --git a/tests/results/test_namespace_examples/04_0type_param_integer.html b/tests/results/test_namespace_examples/04_0type_param_integer.html index b698cc1ba..be0a2d237 100644 --- a/tests/results/test_namespace_examples/04_0type_param_integer.html +++ b/tests/results/test_namespace_examples/04_0type_param_integer.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  int: 10                     # A limited integer
\ No newline at end of file +
rougail:
+  int: 10
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_0type_param_integer.sh b/tests/results/test_namespace_examples/04_0type_param_integer.sh index 9e0e91929..465927299 100644 --- a/tests/results/test_namespace_examples/04_0type_param_integer.sh +++ b/tests/results/test_namespace_examples/04_0type_param_integer.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - int: 10 # A limited integer  +rougail:  + int: 10  diff --git a/tests/results/test_namespace_examples/04_1auto_save.adoc b/tests/results/test_namespace_examples/04_1auto_save.adoc index a76815cee..ea8068700 100644 --- a/tests/results/test_namespace_examples/04_1auto_save.adoc +++ b/tests/results/test_namespace_examples/04_1auto_save.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: no # An auto save variable +rougail: + variable: no ---- diff --git a/tests/results/test_namespace_examples/04_1auto_save.gitlab.md b/tests/results/test_namespace_examples/04_1auto_save.gitlab.md index fa6198086..b1e970d69 100644 --- a/tests/results/test_namespace_examples/04_1auto_save.gitlab.md +++ b/tests/results/test_namespace_examples/04_1auto_save.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: no # An auto save variable +rougail: + variable: no ``` diff --git a/tests/results/test_namespace_examples/04_1auto_save.html b/tests/results/test_namespace_examples/04_1auto_save.html index 8db1aadbc..1687b2229 100644 --- a/tests/results/test_namespace_examples/04_1auto_save.html +++ b/tests/results/test_namespace_examples/04_1auto_save.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: no                # An auto save variable
\ No newline at end of file +
rougail:
+  variable: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1auto_save.sh b/tests/results/test_namespace_examples/04_1auto_save.sh index 24363d28f..c53d54910 100644 --- a/tests/results/test_namespace_examples/04_1auto_save.sh +++ b/tests/results/test_namespace_examples/04_1auto_save.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: no # An auto save variable  +rougail:  + variable: no  diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.adoc b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.adoc index 47e2cd54f..0435452cb 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: no # A first variable - var2: no # A second variable +rougail: + var1: no + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.gitlab.md index c485e0eeb..05a9aa871 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.gitlab.md +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: no # A first variable - var2: no # A second variable +rougail: + var1: no + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.html b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.html index e1086734e..ca1b94c90 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.html +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.sh index be87b523e..111cca59d 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.sh +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.adoc index ddfd7596a..edabfb900 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: no # A first variable - var2: yes # A second variable +rougail: + var1: no + var2: yes ---- diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.gitlab.md index 43a211ea2..8894991c4 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.gitlab.md +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: no # A first variable - var2: yes # A second variable +rougail: + var1: no + var2: yes ``` diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.html b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.html index bfadb0714..d8527d762 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.html +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: yes                   # A second variable
\ No newline at end of file +
rougail:
+  var1: no
+  var2: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.sh index 9d07ab459..b4d33b9d9 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A first variable  - var2: yes # A second variable  +rougail:  + var1: no  + var2: yes  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden.adoc index 7b8424ef4..fa7087f44 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: value # A first variable - var2: example # A second variable - var3: value # A third variable +rougail: + var1: value + var2: example + var3: value ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden.gitlab.md index 51e471798..c2352df6d 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ``` @@ -11,10 +11,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: value # A first variable - var2: example # A second variable - var3: value # A third variable +rougail: + var1: value + var2: example + var3: value ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden.html index b51fc03e3..e7cf1884c 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var2: example               # A second variable

Example with all variables modifiable

+
rougail:
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: value                 # A first variable
-  var2: example               # A second variable
-  var3: value                 # A third variable
\ No newline at end of file +
rougail:
+  var1: value
+  var2: example
+  var3: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden.sh index 1bd93c9cd..78d4704e3 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var2: example # A second variable  - - +rougail:  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: value # A first variable  - var2: example # A second variable  - var3: value # A third variable  +rougail:  + var1: value  + var2: example  + var3: value  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.adoc index 9f5b009f0..80d74e2d0 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: value # A first variable - var2: example # A second variable - var3: example # A third variable +rougail: + var1: value + var2: example + var3: example ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.gitlab.md index 8a76a6661..231fc5524 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ``` @@ -11,10 +11,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: value # A first variable - var2: example # A second variable - var3: example # A third variable +rougail: + var1: value + var2: example + var3: example ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.html index 57b786958..15b6f5752 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var2: example               # A second variable

Example with all variables modifiable

+
rougail:
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: value                 # A first variable
-  var2: example               # A second variable
-  var3: example               # A third variable
\ No newline at end of file +
rougail:
+  var1: value
+  var2: example
+  var3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.sh index 95e44c47f..f3361c5ce 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var2: example # A second variable  - - +rougail:  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: value # A first variable  - var2: example # A second variable  - var3: example # A third variable  +rougail:  + var1: value  + var2: example  + var3: example  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.adoc index fefc375d3..debf27785 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var3: value # A third variable +rougail: + var3: value ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.gitlab.md index 6b154bd2a..5985cd28c 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var3: value # A third variable +rougail: + var3: value ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.html index 0d9c9246e..4cfd400e6 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var3: value                 # A third variable
\ No newline at end of file +
rougail:
+  var3: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.sh index fa48539a3..dbf231b0e 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_3.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var3: value # A third variable  +rougail:  + var3: value  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.adoc index f267df7af..cf072ecca 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable - var3: value # A third variable +rougail: + var2: example + var3: value ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.gitlab.md index 743f3b157..fb3d8088d 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var2: example # A second variable - var3: value # A third variable +rougail: + var2: example + var3: value ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.html index 388a39b71..9d89a2947 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var2: example               # A second variable

Example with all variables modifiable

+
rougail:
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var2: example               # A second variable
-  var3: value                 # A third variable
\ No newline at end of file +
rougail:
+  var2: example
+  var3: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.sh index 6ef1858c9..10c81ba06 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_4.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var2: example # A second variable  - - +rougail:  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var2: example # A second variable  - var3: value # A third variable  +rougail:  + var2: example  + var3: value  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.adoc index c20e28ead..3a4c4c020 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: value # A first variable - var3: example # A third variable +rougail: + var1: value + var3: example ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.gitlab.md index f99ff6f39..3a90916ec 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: value # A first variable - var3: example # A third variable +rougail: + var1: value + var3: example ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.html index 7c10767eb..9dab4fada 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var3: example               # A third variable

Example with all variables modifiable

+
rougail:
+  var3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: value                 # A first variable
-  var3: example               # A third variable
\ No newline at end of file +
rougail:
+  var1: value
+  var3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.sh index a2ac77025..6cb1f1608 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_5.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var3: example # A third variable  - - +rougail:  + var3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: value # A first variable  - var3: example # A third variable  +rougail:  + var1: value  + var3: example  diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.adoc b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.adoc index c20e28ead..3a4c4c020 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: value # A first variable - var3: example # A third variable +rougail: + var1: value + var3: example ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.gitlab.md index f99ff6f39..3a90916ec 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.gitlab.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: value # A first variable - var3: example # A third variable +rougail: + var1: value + var3: example ``` diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.html b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.html index 7c10767eb..9dab4fada 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.html +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var3: example               # A third variable

Example with all variables modifiable

+
rougail:
+  var3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: value                 # A first variable
-  var3: example               # A third variable
\ No newline at end of file +
rougail:
+  var1: value
+  var3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.sh index a2ac77025..6cb1f1608 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_6.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var3: example # A third variable  - - +rougail:  + var3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: value # A first variable  - var3: example # A third variable  +rougail:  + var1: value  + var3: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation.adoc index 15daba687..09731974f 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - variable1: example # A first variable - variable2: example # A second variable +rougail: + variable1: example + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # A conditional variable - variable1: example # A first variable - variable2: example # A second variable +rougail: + condition: no + variable1: example + variable2: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation.gitlab.md index 565893155..d2a397c21 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - variable1: example # A first variable - variable2: example # A second variable +rougail: + variable1: example + variable2: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # A conditional variable - variable1: example # A first variable - variable2: example # A second variable +rougail: + condition: no + variable1: example + variable2: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation.html b/tests/results/test_namespace_examples/04_5disabled_calculation.html index 42506d4fa..ee847f956 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable1: example          # A first variable
-  variable2: example          # A second variable

Example with all variables modifiable

+
rougail:
+  variable1: example
+  variable2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A conditional variable
-  variable1: example          # A first variable
-  variable2: example          # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  variable1: example
+  variable2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation.sh b/tests/results/test_namespace_examples/04_5disabled_calculation.sh index 396f1ac5a..37ef7223e 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable1: example # A first variable  - variable2: example # A second variable  - - +rougail:  + variable1: example  + variable2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A conditional variable  - variable1: example # A first variable  - variable2: example # A second variable  +rougail:  + condition: no  + variable1: example  + variable2: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.adoc index 6d43781a6..09731974f 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - variable1: example # A first variable - variable2: example # A seconde variable +rougail: + variable1: example + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # A conditional variable - variable1: example # A first variable - variable2: example # A seconde variable +rougail: + condition: no + variable1: example + variable2: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.gitlab.md index 2f9d6dc75..d2a397c21 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - variable1: example # A first variable - variable2: example # A seconde variable +rougail: + variable1: example + variable2: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # A conditional variable - variable1: example # A first variable - variable2: example # A seconde variable +rougail: + condition: no + variable1: example + variable2: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.html b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.html index 916103307..ee847f956 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable1: example          # A first variable
-  variable2: example          # A seconde variable

Example with all variables modifiable

+
rougail:
+  variable1: example
+  variable2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A conditional variable
-  variable1: example          # A first variable
-  variable2: example          # A seconde variable
\ No newline at end of file +
rougail:
+  condition: no
+  variable1: example
+  variable2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.sh index 857c30839..37ef7223e 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_boolean.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable1: example # A first variable  - variable2: example # A seconde variable  - - +rougail:  + variable1: example  + variable2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A conditional variable  - variable1: example # A first variable  - variable2: example # A seconde variable  +rougail:  + condition: no  + variable1: example  + variable2: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_default.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_default.adoc index da088216d..4a2ddabb8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_default.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_default.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_default.gitlab.md index 6dbca1e23..a8af0c042 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_default.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_default.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_default.html b/tests/results/test_namespace_examples/04_5disabled_calculation_default.html index d7b0eb431..081756556 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_default.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_default.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_default.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_default.sh index c4390b175..6cda49b46 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_default.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_default.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + condition: no  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.adoc index 29373f393..b9bb010ac 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - example - variable2: # A second variable + variable2: - example ---- == Example with all variables modifiable @@ -14,10 +14,10 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - condition: no # A conditional variable - variable1: # A first variable +rougail: + condition: no + variable1: - example - variable2: # A second variable + variable2: - example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.gitlab.md index 821f85d7b..476d8cfe2 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - variable1: # A first variable +rougail: + variable1: - example - variable2: # A second variable + variable2: - example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # A conditional variable - variable1: # A first variable +rougail: + condition: no + variable1: - example - variable2: # A second variable + variable2: - example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.html b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.html index 146071296..7e2f189ee 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable1:                  # A first variable
+
rougail:
+  variable1:
     - example
-  variable2:                  # A second variable
+  variable2:
     - example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A conditional variable
-  variable1:                  # A first variable
+
rougail:
+  condition: no
+  variable1:
     - example
-  variable2:                  # A second variable
+  variable2:
     - example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.sh index 1b43b3161..ef05b0da8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable1: # A first variable  +rougail:  + variable1:   - example  - variable2: # A second variable  + variable2:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A conditional variable  - variable1: # A first variable  +rougail:  + condition: no  + variable1:   - example  - variable2: # A second variable  + variable2:   - example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.adoc index 866a4ab27..122087c01 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - var1: example # A first variable - var2: example # A second variable +rougail: + condition: no + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.gitlab.md index 8ccccd5ff..a575ce1cb 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - var1: example # A first variable - var2: example # A second variable +rougail: + condition: no + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.html b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.html index d9480303e..b55915f45 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  var1: example               # A first variable
-  var2: example               # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.sh index c14781887..857c77c44 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + condition: no  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.adoc index 8e3599b8a..62bce7c6d 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - condition: false # A condition - var1: example # A first variable - var3: example # A second variable - var4: example # A forth variable +rougail: + condition: false + var1: example + var3: example + var4: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.gitlab.md index 26361839f..19f763834 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - condition: false # A condition - var1: example # A first variable - var3: example # A second variable - var4: example # A forth variable +rougail: + condition: false + var1: example + var3: example + var4: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.html b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.html index 57a844adb..53dec98a7 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: false            # A condition
-  var1: example               # A first variable
-  var3: example               # A second variable
-  var4: example               # A forth variable
\ No newline at end of file +
rougail:
+  condition: false
+  var1: example
+  var3: example
+  var4: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.sh index c9f934e63..dae8faf45 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional_default.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: false # A condition  - var1: example # A first variable  - var3: example # A second variable  - var4: example # A forth variable  +rougail:  + condition: false  + var1: example  + var3: example  + var4: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.adoc index 6eaad540f..c690597bd 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: false # A condition - variable: example # A variable +rougail: + condition: false + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.gitlab.md index b4de05e58..15baa793d 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: false # A condition - variable: example # A variable +rougail: + condition: false + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.html index 52398524b..3d4fa76a8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: false            # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: false
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.sh index d9e673587..82718e028 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: false # A condition  - variable: example # A variable  +rougail:  + condition: false  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.adoc index 3f8f4b17c..d18efa59a 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: true # A condition - variable: example # A variable +rougail: + condition: true + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.gitlab.md index cc6fb11e0..19a2977e7 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: true # A condition - variable: example # A variable +rougail: + condition: true + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.html index 5fa042ba6..55a85bc59 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: true             # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: true
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.sh index 73dd9c246..aecc966b8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable10.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: true # A condition  - variable: example # A variable  +rougail:  + condition: true  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.adoc index 3f8f4b17c..d18efa59a 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: true # A condition - variable: example # A variable +rougail: + condition: true + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.gitlab.md index cc6fb11e0..19a2977e7 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: true # A condition - variable: example # A variable +rougail: + condition: true + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.html index 5fa042ba6..55a85bc59 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: true             # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: true
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.sh index 73dd9c246..aecc966b8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: true # A condition  - variable: example # A variable  +rougail:  + condition: true  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.adoc index 576a069a2..7c6fffe08 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: yes # A condition - variable: example # A variable +rougail: + condition: yes + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.gitlab.md index 6251c31af..9e2dacd72 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: yes # A condition - variable: example # A variable +rougail: + condition: yes + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.html index a485b64ee..7922b28bc 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: yes              # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: yes
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.sh index 73d650719..321c570c9 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: yes # A condition  - variable: example # A variable  +rougail:  + condition: yes  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.adoc index 576a069a2..7c6fffe08 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: yes # A condition - variable: example # A variable +rougail: + condition: yes + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.gitlab.md index 6251c31af..9e2dacd72 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: yes # A condition - variable: example # A variable +rougail: + condition: yes + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.html index a485b64ee..7922b28bc 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: yes              # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: yes
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.sh index 73d650719..321c570c9 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: yes # A condition  - variable: example # A variable  +rougail:  + condition: yes  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.adoc index 96a75a545..4332373d5 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.gitlab.md index 2a41f3bdd..da3685555 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.html index 40813b27d..47cc4144b 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.sh index f577170b1..a631b0224 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable5.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  +rougail:  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.adoc index 96a75a545..4332373d5 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.gitlab.md index 2a41f3bdd..da3685555 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.html index 40813b27d..47cc4144b 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.sh index f577170b1..a631b0224 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable6.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  +rougail:  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.adoc index 6eaad540f..c690597bd 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: false # A condition - variable: example # A variable +rougail: + condition: false + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.gitlab.md index b4de05e58..15baa793d 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: false # A condition - variable: example # A variable +rougail: + condition: false + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.html index 52398524b..3d4fa76a8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: false            # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: false
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.sh index d9e673587..82718e028 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable7.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: false # A condition  - variable: example # A variable  +rougail:  + condition: false  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.adoc index 96a75a545..4332373d5 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.gitlab.md index 2a41f3bdd..da3685555 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.html index 40813b27d..47cc4144b 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.sh index f577170b1..a631b0224 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable9.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  +rougail:  + variable: example  diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.adoc index a813199b8..7b12e39e6 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - example ---- == Example with all variables modifiable @@ -12,8 +12,8 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - condition: false # A condition - variable: # A variable +rougail: + condition: false + variable: - example ---- diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.gitlab.md index bed9d8aee..d0be39144 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.gitlab.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: false # A condition - variable: # A variable +rougail: + condition: false + variable: - example ``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.html b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.html index 68547e351..0e1a33deb 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.html +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: false            # A condition
-  variable:                   # A variable
+
rougail:
+  condition: false
+  variable:
     - example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.sh index edba96e3a..94f5a7140 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: false # A condition  - variable: # A variable  +rougail:  + condition: false  + variable:   - example  diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation.adoc b/tests/results/test_namespace_examples/04_5hidden_calculation.adoc index 60ec2ecaf..4a2ddabb8 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation.adoc +++ b/tests/results/test_namespace_examples/04_5hidden_calculation.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # The condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_examples/04_5hidden_calculation.gitlab.md index 6be4d94dd..a8af0c042 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: no # The condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation.html b/tests/results/test_namespace_examples/04_5hidden_calculation.html index d69d76657..081756556 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation.html +++ b/tests/results/test_namespace_examples/04_5hidden_calculation.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # The condition
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation.sh b/tests/results/test_namespace_examples/04_5hidden_calculation.sh index ede58bcb5..6cda49b46 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation.sh +++ b/tests/results/test_namespace_examples/04_5hidden_calculation.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # The condition  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + condition: no  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation2.adoc b/tests/results/test_namespace_examples/04_5hidden_calculation2.adoc index da088216d..4a2ddabb8 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation2.adoc +++ b/tests/results/test_namespace_examples/04_5hidden_calculation2.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_examples/04_5hidden_calculation2.gitlab.md index 6dbca1e23..a8af0c042 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation2.gitlab.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation2.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation2.html b/tests/results/test_namespace_examples/04_5hidden_calculation2.html index d7b0eb431..081756556 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation2.html +++ b/tests/results/test_namespace_examples/04_5hidden_calculation2.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation2.sh b/tests/results/test_namespace_examples/04_5hidden_calculation2.sh index c4390b175..6cda49b46 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_examples/04_5hidden_calculation2.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + condition: no  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.adoc b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.adoc index da088216d..4a2ddabb8 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.adoc +++ b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.gitlab.md index 6dbca1e23..a8af0c042 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - var1: no # A first variable - var2: no # A second variable +rougail: + condition: no + var1: no + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.html b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.html index d7b0eb431..081756556 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.html +++ b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  var1: no                    # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  condition: no
+  var1: no
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.sh index c4390b175..6cda49b46 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.sh +++ b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - var1: no # A first variable  - var2: no # A second variable  +rougail:  + condition: no  + var1: no  + var2: no  diff --git a/tests/results/test_namespace_examples/04_5validators.adoc b/tests/results/test_namespace_examples/04_5validators.adoc index 63372db27..b556120a4 100644 --- a/tests/results/test_namespace_examples/04_5validators.adoc +++ b/tests/results/test_namespace_examples/04_5validators.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - int: 42 # An integer +rougail: + int: 42 ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - int: 42 # An integer +rougail: + int: 42 ---- diff --git a/tests/results/test_namespace_examples/04_5validators.gitlab.md b/tests/results/test_namespace_examples/04_5validators.gitlab.md index 1e8c8a632..fd5509caa 100644 --- a/tests/results/test_namespace_examples/04_5validators.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - int: 42 # An integer +rougail: + int: 42 ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - int: 42 # An integer +rougail: + int: 42 ``` diff --git a/tests/results/test_namespace_examples/04_5validators.html b/tests/results/test_namespace_examples/04_5validators.html index 879e48afa..52185185e 100644 --- a/tests/results/test_namespace_examples/04_5validators.html +++ b/tests/results/test_namespace_examples/04_5validators.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  int: 42                     # An integer

Example with all variables modifiable

+
rougail:
+  int: 42

Example with all variables modifiable

-
rougail:                      # Rougail
-  int: 42                     # An integer
\ No newline at end of file +
rougail:
+  int: 42
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators.sh b/tests/results/test_namespace_examples/04_5validators.sh index e166bfafb..a94f3020a 100644 --- a/tests/results/test_namespace_examples/04_5validators.sh +++ b/tests/results/test_namespace_examples/04_5validators.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - int: 42 # An integer  - - +rougail:  + int: 42  Example with all variables modifiable - ---  -rougail: # Rougail  - int: 42 # An integer  +rougail:  + int: 42  diff --git a/tests/results/test_namespace_examples/04_5validators_differ.adoc b/tests/results/test_namespace_examples/04_5validators_differ.adoc index fd9236314..7b9c9564e 100644 --- a/tests/results/test_namespace_examples/04_5validators_differ.adoc +++ b/tests/results/test_namespace_examples/04_5validators_differ.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: another_value # A first variable - var2: no # A second variable +rougail: + var1: another_value + var2: no ---- diff --git a/tests/results/test_namespace_examples/04_5validators_differ.gitlab.md b/tests/results/test_namespace_examples/04_5validators_differ.gitlab.md index e8086bdf6..86bde340e 100644 --- a/tests/results/test_namespace_examples/04_5validators_differ.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_differ.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: another_value # A first variable - var2: no # A second variable +rougail: + var1: another_value + var2: no ``` diff --git a/tests/results/test_namespace_examples/04_5validators_differ.html b/tests/results/test_namespace_examples/04_5validators_differ.html index 62e7b2aa4..86af2db11 100644 --- a/tests/results/test_namespace_examples/04_5validators_differ.html +++ b/tests/results/test_namespace_examples/04_5validators_differ.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: another_value         # A first variable
-  var2: no                    # A second variable
\ No newline at end of file +
rougail:
+  var1: another_value
+  var2: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_differ.sh b/tests/results/test_namespace_examples/04_5validators_differ.sh index c852c7da8..c6f1d3108 100644 --- a/tests/results/test_namespace_examples/04_5validators_differ.sh +++ b/tests/results/test_namespace_examples/04_5validators_differ.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: another_value # A first variable  - var2: no # A second variable  +rougail:  + var1: another_value  + var2: no  diff --git a/tests/results/test_namespace_examples/04_5validators_multi.adoc b/tests/results/test_namespace_examples/04_5validators_multi.adoc index 25b49f0ce..6174c3b48 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi.adoc +++ b/tests/results/test_namespace_examples/04_5validators_multi.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - no - yes ---- diff --git a/tests/results/test_namespace_examples/04_5validators_multi.gitlab.md b/tests/results/test_namespace_examples/04_5validators_multi.gitlab.md index 9fa9d1c9c..5b27b6bba 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - no - yes ``` diff --git a/tests/results/test_namespace_examples/04_5validators_multi.html b/tests/results/test_namespace_examples/04_5validators_multi.html index 7b6224dd5..6b72d57ca 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi.html +++ b/tests/results/test_namespace_examples/04_5validators_multi.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - no
     - yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_multi.sh b/tests/results/test_namespace_examples/04_5validators_multi.sh index 437cf73e7..58b3913af 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi.sh +++ b/tests/results/test_namespace_examples/04_5validators_multi.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - no   - yes  diff --git a/tests/results/test_namespace_examples/04_5validators_multi2.adoc b/tests/results/test_namespace_examples/04_5validators_multi2.adoc index 2c37021ce..40cfdd6b9 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi2.adoc +++ b/tests/results/test_namespace_examples/04_5validators_multi2.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_examples/04_5validators_multi2.gitlab.md index 77a38bb94..519a5add1 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi2.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_multi2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/04_5validators_multi2.html b/tests/results/test_namespace_examples/04_5validators_multi2.html index 1149c60be..c5e36b112 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi2.html +++ b/tests/results/test_namespace_examples/04_5validators_multi2.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_multi2.sh b/tests/results/test_namespace_examples/04_5validators_multi2.sh index 516d3595a..bb1172417 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi2.sh +++ b/tests/results/test_namespace_examples/04_5validators_multi2.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/04_5validators_multi3.adoc b/tests/results/test_namespace_examples/04_5validators_multi3.adoc index f9b82a552..624a821d7 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi3.adoc +++ b/tests/results/test_namespace_examples/04_5validators_multi3.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - 0 ---- diff --git a/tests/results/test_namespace_examples/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_examples/04_5validators_multi3.gitlab.md index ca8267673..71fa9c733 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi3.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_multi3.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A second variable +rougail: + var1: - 0 ``` diff --git a/tests/results/test_namespace_examples/04_5validators_multi3.html b/tests/results/test_namespace_examples/04_5validators_multi3.html index 6c8d8952d..de9606664 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi3.html +++ b/tests/results/test_namespace_examples/04_5validators_multi3.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A second variable
+
rougail:
+  var1:
     - 0
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_multi3.sh b/tests/results/test_namespace_examples/04_5validators_multi3.sh index 76e3cfd65..3b15e7dd6 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi3.sh +++ b/tests/results/test_namespace_examples/04_5validators_multi3.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A second variable  +rougail:  + var1:   - 0  diff --git a/tests/results/test_namespace_examples/04_5validators_warnings.adoc b/tests/results/test_namespace_examples/04_5validators_warnings.adoc index c1949e56f..bf064fbc5 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings.adoc +++ b/tests/results/test_namespace_examples/04_5validators_warnings.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - int: 1000 # An integer +rougail: + int: 1000 ---- diff --git a/tests/results/test_namespace_examples/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_examples/04_5validators_warnings.gitlab.md index 2b4c56c14..840495288 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_warnings.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - int: 1000 # An integer +rougail: + int: 1000 ``` diff --git a/tests/results/test_namespace_examples/04_5validators_warnings.html b/tests/results/test_namespace_examples/04_5validators_warnings.html index 87ef5e91b..fc18fd941 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings.html +++ b/tests/results/test_namespace_examples/04_5validators_warnings.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  int: 1000                   # An integer
\ No newline at end of file +
rougail:
+  int: 1000
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_warnings.sh b/tests/results/test_namespace_examples/04_5validators_warnings.sh index b48730f29..a026628cc 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings.sh +++ b/tests/results/test_namespace_examples/04_5validators_warnings.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - int: 1000 # An integer  +rougail:  + int: 1000  diff --git a/tests/results/test_namespace_examples/04_5validators_warnings_all.adoc b/tests/results/test_namespace_examples/04_5validators_warnings_all.adoc index c1949e56f..bf064fbc5 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings_all.adoc +++ b/tests/results/test_namespace_examples/04_5validators_warnings_all.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - int: 1000 # An integer +rougail: + int: 1000 ---- diff --git a/tests/results/test_namespace_examples/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_examples/04_5validators_warnings_all.gitlab.md index 2b4c56c14..840495288 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings_all.gitlab.md +++ b/tests/results/test_namespace_examples/04_5validators_warnings_all.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - int: 1000 # An integer +rougail: + int: 1000 ``` diff --git a/tests/results/test_namespace_examples/04_5validators_warnings_all.html b/tests/results/test_namespace_examples/04_5validators_warnings_all.html index 87ef5e91b..fc18fd941 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings_all.html +++ b/tests/results/test_namespace_examples/04_5validators_warnings_all.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  int: 1000                   # An integer
\ No newline at end of file +
rougail:
+  int: 1000
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/04_5validators_warnings_all.sh b/tests/results/test_namespace_examples/04_5validators_warnings_all.sh index b48730f29..a026628cc 100644 --- a/tests/results/test_namespace_examples/04_5validators_warnings_all.sh +++ b/tests/results/test_namespace_examples/04_5validators_warnings_all.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - int: 1000 # An integer  +rougail:  + int: 1000  diff --git a/tests/results/test_namespace_examples/05_0multi_not_uniq.adoc b/tests/results/test_namespace_examples/05_0multi_not_uniq.adoc index a30f414b4..5c31a4319 100644 --- a/tests/results/test_namespace_examples/05_0multi_not_uniq.adoc +++ b/tests/results/test_namespace_examples/05_0multi_not_uniq.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A variable +rougail: + var1: - non ---- diff --git a/tests/results/test_namespace_examples/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_examples/05_0multi_not_uniq.gitlab.md index 793cbfb96..c976efe83 100644 --- a/tests/results/test_namespace_examples/05_0multi_not_uniq.gitlab.md +++ b/tests/results/test_namespace_examples/05_0multi_not_uniq.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var1: # A variable +rougail: + var1: - non ``` diff --git a/tests/results/test_namespace_examples/05_0multi_not_uniq.html b/tests/results/test_namespace_examples/05_0multi_not_uniq.html index a07545555..5bb03433c 100644 --- a/tests/results/test_namespace_examples/05_0multi_not_uniq.html +++ b/tests/results/test_namespace_examples/05_0multi_not_uniq.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A variable
+
rougail:
+  var1:
     - non
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/05_0multi_not_uniq.sh b/tests/results/test_namespace_examples/05_0multi_not_uniq.sh index 2d8e3b0f1..34586c347 100644 --- a/tests/results/test_namespace_examples/05_0multi_not_uniq.sh +++ b/tests/results/test_namespace_examples/05_0multi_not_uniq.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A variable  +rougail:  + var1:   - non  diff --git a/tests/results/test_namespace_examples/05_0multi_uniq.adoc b/tests/results/test_namespace_examples/05_0multi_uniq.adoc index 14bfbeea0..05f45e69a 100644 --- a/tests/results/test_namespace_examples/05_0multi_uniq.adoc +++ b/tests/results/test_namespace_examples/05_0multi_uniq.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - non ---- diff --git a/tests/results/test_namespace_examples/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_examples/05_0multi_uniq.gitlab.md index aaeb29da1..66528ea9a 100644 --- a/tests/results/test_namespace_examples/05_0multi_uniq.gitlab.md +++ b/tests/results/test_namespace_examples/05_0multi_uniq.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - non ``` diff --git a/tests/results/test_namespace_examples/05_0multi_uniq.html b/tests/results/test_namespace_examples/05_0multi_uniq.html index f02e5f1f0..e17b2236d 100644 --- a/tests/results/test_namespace_examples/05_0multi_uniq.html +++ b/tests/results/test_namespace_examples/05_0multi_uniq.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - non
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/05_0multi_uniq.sh b/tests/results/test_namespace_examples/05_0multi_uniq.sh index a0763368b..9acb76b0d 100644 --- a/tests/results/test_namespace_examples/05_0multi_uniq.sh +++ b/tests/results/test_namespace_examples/05_0multi_uniq.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - non  diff --git a/tests/results/test_namespace_examples/12_1auto_save_expert.adoc b/tests/results/test_namespace_examples/12_1auto_save_expert.adoc index f7aebf4c9..05f446d62 100644 --- a/tests/results/test_namespace_examples/12_1auto_save_expert.adoc +++ b/tests/results/test_namespace_examples/12_1auto_save_expert.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: no # A variable +rougail: + var: no ---- diff --git a/tests/results/test_namespace_examples/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_examples/12_1auto_save_expert.gitlab.md index c659ae8b3..e0cdc59ba 100644 --- a/tests/results/test_namespace_examples/12_1auto_save_expert.gitlab.md +++ b/tests/results/test_namespace_examples/12_1auto_save_expert.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: no # A variable +rougail: + var: no ``` diff --git a/tests/results/test_namespace_examples/12_1auto_save_expert.html b/tests/results/test_namespace_examples/12_1auto_save_expert.html index e838b0581..2c95615ca 100644 --- a/tests/results/test_namespace_examples/12_1auto_save_expert.html +++ b/tests/results/test_namespace_examples/12_1auto_save_expert.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: no                     # A variable
\ No newline at end of file +
rougail:
+  var: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/12_1auto_save_expert.sh b/tests/results/test_namespace_examples/12_1auto_save_expert.sh index 0e92b5411..f2c167ac9 100644 --- a/tests/results/test_namespace_examples/12_1auto_save_expert.sh +++ b/tests/results/test_namespace_examples/12_1auto_save_expert.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: no # A variable  +rougail:  + var: no  diff --git a/tests/results/test_namespace_examples/16_0redefine_description.adoc b/tests/results/test_namespace_examples/16_0redefine_description.adoc index a11d2bf2d..7377522d5 100644 --- a/tests/results/test_namespace_examples/16_0redefine_description.adoc +++ b/tests/results/test_namespace_examples/16_0redefine_description.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - var: example # Redefined +rougail: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: example # Redefined +rougail: + var: example ---- diff --git a/tests/results/test_namespace_examples/16_0redefine_description.gitlab.md b/tests/results/test_namespace_examples/16_0redefine_description.gitlab.md index d3f715f57..bd63a31ef 100644 --- a/tests/results/test_namespace_examples/16_0redefine_description.gitlab.md +++ b/tests/results/test_namespace_examples/16_0redefine_description.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: example # Redefined +rougail: + var: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: example # Redefined +rougail: + var: example ``` diff --git a/tests/results/test_namespace_examples/16_0redefine_description.html b/tests/results/test_namespace_examples/16_0redefine_description.html index 95e3b4771..92485dd96 100644 --- a/tests/results/test_namespace_examples/16_0redefine_description.html +++ b/tests/results/test_namespace_examples/16_0redefine_description.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var: example                # Redefined

Example with all variables modifiable

+
rougail:
+  var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: example                # Redefined
\ No newline at end of file +
rougail:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_0redefine_description.sh b/tests/results/test_namespace_examples/16_0redefine_description.sh index 313e3a7d4..d11e6d006 100644 --- a/tests/results/test_namespace_examples/16_0redefine_description.sh +++ b/tests/results/test_namespace_examples/16_0redefine_description.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: example # Redefined  - - +rougail:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: example # Redefined  +rougail:  + var: example  diff --git a/tests/results/test_namespace_examples/16_2family_redefine_calculation.adoc b/tests/results/test_namespace_examples/16_2family_redefine_calculation.adoc index 3710fb095..6f66ce9f2 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_calculation.adoc +++ b/tests/results/test_namespace_examples/16_2family_redefine_calculation.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ---- == Example with all variables modifiable @@ -12,7 +12,7 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ---- diff --git a/tests/results/test_namespace_examples/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_examples/16_2family_redefine_calculation.gitlab.md index 7f1b4d21e..d6d0c4106 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/16_2family_redefine_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ``` @@ -12,8 +12,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ``` diff --git a/tests/results/test_namespace_examples/16_2family_redefine_calculation.html b/tests/results/test_namespace_examples/16_2family_redefine_calculation.html index d8ff86d14..643f6c678 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_calculation.html +++ b/tests/results/test_namespace_examples/16_2family_redefine_calculation.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # family
+
rougail:
+  family:
     var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # family
+
rougail:
+  family:
     var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_2family_redefine_calculation.sh b/tests/results/test_namespace_examples/16_2family_redefine_calculation.sh index ca1cb1d9f..78628e639 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_calculation.sh +++ b/tests/results/test_namespace_examples/16_2family_redefine_calculation.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # family  +rougail:  + family:   var1: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - family: # family  +rougail:  + family:   var1: example  diff --git a/tests/results/test_namespace_examples/16_3family_empty_at_ends.adoc b/tests/results/test_namespace_examples/16_3family_empty_at_ends.adoc index 3710fb095..6f66ce9f2 100644 --- a/tests/results/test_namespace_examples/16_3family_empty_at_ends.adoc +++ b/tests/results/test_namespace_examples/16_3family_empty_at_ends.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ---- == Example with all variables modifiable @@ -12,7 +12,7 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ---- diff --git a/tests/results/test_namespace_examples/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_examples/16_3family_empty_at_ends.gitlab.md index 7f1b4d21e..d6d0c4106 100644 --- a/tests/results/test_namespace_examples/16_3family_empty_at_ends.gitlab.md +++ b/tests/results/test_namespace_examples/16_3family_empty_at_ends.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ``` @@ -12,8 +12,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # family +rougail: + family: var1: example ``` diff --git a/tests/results/test_namespace_examples/16_3family_empty_at_ends.html b/tests/results/test_namespace_examples/16_3family_empty_at_ends.html index d8ff86d14..643f6c678 100644 --- a/tests/results/test_namespace_examples/16_3family_empty_at_ends.html +++ b/tests/results/test_namespace_examples/16_3family_empty_at_ends.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # family
+
rougail:
+  family:
     var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # family
+
rougail:
+  family:
     var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_3family_empty_at_ends.sh b/tests/results/test_namespace_examples/16_3family_empty_at_ends.sh index ca1cb1d9f..78628e639 100644 --- a/tests/results/test_namespace_examples/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_examples/16_3family_empty_at_ends.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # family  +rougail:  + family:   var1: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - family: # family  +rougail:  + family:   var1: example  diff --git a/tests/results/test_namespace_examples/16_5exists_nonexists.adoc b/tests/results/test_namespace_examples/16_5exists_nonexists.adoc index 13c7f947e..edabfb900 100644 --- a/tests/results/test_namespace_examples/16_5exists_nonexists.adoc +++ b/tests/results/test_namespace_examples/16_5exists_nonexists.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: no # A variable - var2: yes # A new variable +rougail: + var1: no + var2: yes ---- diff --git a/tests/results/test_namespace_examples/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_examples/16_5exists_nonexists.gitlab.md index d85c79474..8894991c4 100644 --- a/tests/results/test_namespace_examples/16_5exists_nonexists.gitlab.md +++ b/tests/results/test_namespace_examples/16_5exists_nonexists.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: no # A variable - var2: yes # A new variable +rougail: + var1: no + var2: yes ``` diff --git a/tests/results/test_namespace_examples/16_5exists_nonexists.html b/tests/results/test_namespace_examples/16_5exists_nonexists.html index e82f7ccb4..d8527d762 100644 --- a/tests/results/test_namespace_examples/16_5exists_nonexists.html +++ b/tests/results/test_namespace_examples/16_5exists_nonexists.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A variable
-  var2: yes                   # A new variable
\ No newline at end of file +
rougail:
+  var1: no
+  var2: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5exists_nonexists.sh b/tests/results/test_namespace_examples/16_5exists_nonexists.sh index b8a63ca67..b4d33b9d9 100644 --- a/tests/results/test_namespace_examples/16_5exists_nonexists.sh +++ b/tests/results/test_namespace_examples/16_5exists_nonexists.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A variable  - var2: yes # A new variable  +rougail:  + var1: no  + var2: yes  diff --git a/tests/results/test_namespace_examples/16_5redefine_calculation.adoc b/tests/results/test_namespace_examples/16_5redefine_calculation.adoc index 27e20ae13..b29c3488d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_calculation.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_calculation.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: yes # A variable +rougail: + variable: yes ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_calculation.gitlab.md index 41d10bf67..d21214743 100644 --- a/tests/results/test_namespace_examples/16_5redefine_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: yes # A variable +rougail: + variable: yes ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_calculation.html b/tests/results/test_namespace_examples/16_5redefine_calculation.html index c8b217542..49015cd36 100644 --- a/tests/results/test_namespace_examples/16_5redefine_calculation.html +++ b/tests/results/test_namespace_examples/16_5redefine_calculation.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: yes               # A variable
\ No newline at end of file +
rougail:
+  variable: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_calculation.sh b/tests/results/test_namespace_examples/16_5redefine_calculation.sh index be1bf3b26..bd3f5705c 100644 --- a/tests/results/test_namespace_examples/16_5redefine_calculation.sh +++ b/tests/results/test_namespace_examples/16_5redefine_calculation.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: yes # A variable  +rougail:  + variable: yes  diff --git a/tests/results/test_namespace_examples/16_5redefine_choice.adoc b/tests/results/test_namespace_examples/16_5redefine_choice.adoc index d3921914b..6772eafb7 100644 --- a/tests/results/test_namespace_examples/16_5redefine_choice.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_choice.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - variable: a_choice # A variable +rougail: + variable: a_choice ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: a_choice # A variable +rougail: + variable: a_choice ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_choice.gitlab.md index 8d3a2afad..01014cc83 100644 --- a/tests/results/test_namespace_examples/16_5redefine_choice.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_choice.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: a_choice # A variable +rougail: + variable: a_choice ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: a_choice # A variable +rougail: + variable: a_choice ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_choice.html b/tests/results/test_namespace_examples/16_5redefine_choice.html index 3bac599af..b16b86c9b 100644 --- a/tests/results/test_namespace_examples/16_5redefine_choice.html +++ b/tests/results/test_namespace_examples/16_5redefine_choice.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: a_choice          # A variable

Example with all variables modifiable

+
rougail:
+  variable: a_choice

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: a_choice          # A variable
\ No newline at end of file +
rougail:
+  variable: a_choice
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_choice.sh b/tests/results/test_namespace_examples/16_5redefine_choice.sh index a8a85abb5..6016cf56e 100644 --- a/tests/results/test_namespace_examples/16_5redefine_choice.sh +++ b/tests/results/test_namespace_examples/16_5redefine_choice.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: a_choice # A variable  - - +rougail:  + variable: a_choice  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: a_choice # A variable  +rougail:  + variable: a_choice  diff --git a/tests/results/test_namespace_examples/16_5redefine_default.adoc b/tests/results/test_namespace_examples/16_5redefine_default.adoc index 27e20ae13..b29c3488d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_default.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - variable: yes # A variable +rougail: + variable: yes ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_default.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_default.gitlab.md index 41d10bf67..d21214743 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_default.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: yes # A variable +rougail: + variable: yes ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_default.html b/tests/results/test_namespace_examples/16_5redefine_default.html index c8b217542..49015cd36 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default.html +++ b/tests/results/test_namespace_examples/16_5redefine_default.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: yes               # A variable
\ No newline at end of file +
rougail:
+  variable: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_default.sh b/tests/results/test_namespace_examples/16_5redefine_default.sh index be1bf3b26..bd3f5705c 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default.sh +++ b/tests/results/test_namespace_examples/16_5redefine_default.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: yes # A variable  +rougail:  + variable: yes  diff --git a/tests/results/test_namespace_examples/16_5redefine_default_calculation.adoc b/tests/results/test_namespace_examples/16_5redefine_default_calculation.adoc index 96a75a545..4332373d5 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default_calculation.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_default_calculation.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_default_calculation.gitlab.md index 2a41f3bdd..da3685555 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_default_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_default_calculation.html b/tests/results/test_namespace_examples/16_5redefine_default_calculation.html index 40813b27d..47cc4144b 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default_calculation.html +++ b/tests/results/test_namespace_examples/16_5redefine_default_calculation.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_default_calculation.sh b/tests/results/test_namespace_examples/16_5redefine_default_calculation.sh index f577170b1..a631b0224 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_examples/16_5redefine_default_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  +rougail:  + variable: example  diff --git a/tests/results/test_namespace_examples/16_5redefine_family.adoc b/tests/results/test_namespace_examples/16_5redefine_family.adoc index 7334909fb..6e24e78e0 100644 --- a/tests/results/test_namespace_examples/16_5redefine_family.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_family.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - family: # New description - variable: example # A variable +rougail: + family: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family: # New description - variable: example # A variable +rougail: + family: + variable: example ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_family.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_family.gitlab.md index 444eead9e..9b29d76ed 100644 --- a/tests/results/test_namespace_examples/16_5redefine_family.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_family.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - family: # New description - variable: example # A variable +rougail: + family: + variable: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # New description - variable: example # A variable +rougail: + family: + variable: example ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_family.html b/tests/results/test_namespace_examples/16_5redefine_family.html index d1fe250c5..76d58497d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_family.html +++ b/tests/results/test_namespace_examples/16_5redefine_family.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # New description
-    variable: example         # A variable

Example with all variables modifiable

+
rougail:
+  family:
+    variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # New description
-    variable: example         # A variable
\ No newline at end of file +
rougail:
+  family:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_family.sh b/tests/results/test_namespace_examples/16_5redefine_family.sh index 1fdf0d136..9adfe6ac4 100644 --- a/tests/results/test_namespace_examples/16_5redefine_family.sh +++ b/tests/results/test_namespace_examples/16_5redefine_family.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # New description  - variable: example # A variable  - - +rougail:  + family:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family: # New description  - variable: example # A variable  +rougail:  + family:  + variable: example  diff --git a/tests/results/test_namespace_examples/16_5redefine_help.adoc b/tests/results/test_namespace_examples/16_5redefine_help.adoc index 4b4783bc9..6e24e78e0 100644 --- a/tests/results/test_namespace_examples/16_5redefine_help.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_help.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - variable: example # Redefine help +rougail: + family: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family: # A family - variable: example # Redefine help +rougail: + family: + variable: example ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_help.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_help.gitlab.md index 927a900c0..9b29d76ed 100644 --- a/tests/results/test_namespace_examples/16_5redefine_help.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_help.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - family: # A family - variable: example # Redefine help +rougail: + family: + variable: example ``` @@ -12,9 +12,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # A family - variable: example # Redefine help +rougail: + family: + variable: example ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_help.html b/tests/results/test_namespace_examples/16_5redefine_help.html index f0278a9ee..76d58497d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_help.html +++ b/tests/results/test_namespace_examples/16_5redefine_help.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # A family
-    variable: example         # Redefine help

Example with all variables modifiable

+
rougail:
+  family:
+    variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    variable: example         # Redefine help
\ No newline at end of file +
rougail:
+  family:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_help.sh b/tests/results/test_namespace_examples/16_5redefine_help.sh index 64cadf622..9adfe6ac4 100644 --- a/tests/results/test_namespace_examples/16_5redefine_help.sh +++ b/tests/results/test_namespace_examples/16_5redefine_help.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # A family  - variable: example # Redefine help  - - +rougail:  + family:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - variable: example # Redefine help  +rougail:  + family:  + variable: example  diff --git a/tests/results/test_namespace_examples/16_5redefine_multi.adoc b/tests/results/test_namespace_examples/16_5redefine_multi.adoc index 14bfbeea0..05f45e69a 100644 --- a/tests/results/test_namespace_examples/16_5redefine_multi.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_multi.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - non ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_multi.gitlab.md index aaeb29da1..66528ea9a 100644 --- a/tests/results/test_namespace_examples/16_5redefine_multi.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_multi.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: # A variable +rougail: + variable: - non ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_multi.html b/tests/results/test_namespace_examples/16_5redefine_multi.html index f02e5f1f0..e17b2236d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_multi.html +++ b/tests/results/test_namespace_examples/16_5redefine_multi.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable:                   # A variable
+
rougail:
+  variable:
     - non
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_multi.sh b/tests/results/test_namespace_examples/16_5redefine_multi.sh index a0763368b..9acb76b0d 100644 --- a/tests/results/test_namespace_examples/16_5redefine_multi.sh +++ b/tests/results/test_namespace_examples/16_5redefine_multi.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - variable: # A variable  +rougail:  + variable:   - non  diff --git a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.adoc b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.adoc index 4ecc09b97..841786f55 100644 --- a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - variable: example # A variable +rougail: + condition: no + variable: example ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.gitlab.md index 5db840ebe..93d75ad30 100644 --- a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable +rougail: + variable: example ``` @@ -11,9 +11,9 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # A condition - variable: example # A variable +rougail: + condition: no + variable: example ``` diff --git a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.html b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.html index f6bd91a48..d23f51540 100644 --- a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.html +++ b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.html @@ -1,8 +1,8 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable

Example with all variables modifiable

+
rougail:
+  variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  variable: example           # A variable
\ No newline at end of file +
rougail:
+  condition: no
+  variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.sh index c8b89e506..2f58bf952 100644 --- a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - - +rougail:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - variable: example # A variable  +rougail:  + condition: no  + variable: example  diff --git a/tests/results/test_namespace_examples/16_5test_redefine.adoc b/tests/results/test_namespace_examples/16_5test_redefine.adoc index ee91a5e07..a85003173 100644 --- a/tests/results/test_namespace_examples/16_5test_redefine.adoc +++ b/tests/results/test_namespace_examples/16_5test_redefine.adoc @@ -3,16 +3,16 @@ [,yaml] ---- --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: test1 # A first variable - var2: test1 # A second variable - var3: example # A third variable +rougail: + var1: test1 + var2: test1 + var3: example ---- diff --git a/tests/results/test_namespace_examples/16_5test_redefine.gitlab.md b/tests/results/test_namespace_examples/16_5test_redefine.gitlab.md index b16bce2c5..f758a60f1 100644 --- a/tests/results/test_namespace_examples/16_5test_redefine.gitlab.md +++ b/tests/results/test_namespace_examples/16_5test_redefine.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var3: example # A third variable +rougail: + var3: example ``` @@ -11,10 +11,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: test1 # A first variable - var2: test1 # A second variable - var3: example # A third variable +rougail: + var1: test1 + var2: test1 + var3: example ``` diff --git a/tests/results/test_namespace_examples/16_5test_redefine.html b/tests/results/test_namespace_examples/16_5test_redefine.html index 70224ea6f..224f2990f 100644 --- a/tests/results/test_namespace_examples/16_5test_redefine.html +++ b/tests/results/test_namespace_examples/16_5test_redefine.html @@ -1,9 +1,9 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var3: example               # A third variable

Example with all variables modifiable

+
rougail:
+  var3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: test1                 # A first variable
-  var2: test1                 # A second variable
-  var3: example               # A third variable
\ No newline at end of file +
rougail:
+  var1: test1
+  var2: test1
+  var3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_5test_redefine.sh b/tests/results/test_namespace_examples/16_5test_redefine.sh index 0639a666b..c44e34978 100644 --- a/tests/results/test_namespace_examples/16_5test_redefine.sh +++ b/tests/results/test_namespace_examples/16_5test_redefine.sh @@ -1,20 +1,14 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var3: example # A third variable  - - +rougail:  + var3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: test1 # A first variable  - var2: test1 # A second variable  - var3: example # A third variable  +rougail:  + var1: test1  + var2: test1  + var3: example  diff --git a/tests/results/test_namespace_examples/16_6choice_redefine.adoc b/tests/results/test_namespace_examples/16_6choice_redefine.adoc index 92d229e9f..eff4c92fb 100644 --- a/tests/results/test_namespace_examples/16_6choice_redefine.adoc +++ b/tests/results/test_namespace_examples/16_6choice_redefine.adoc @@ -3,6 +3,6 @@ [,yaml] ---- --- -rougail: # Rougail - var: c # A choice +rougail: + var: c ---- diff --git a/tests/results/test_namespace_examples/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_examples/16_6choice_redefine.gitlab.md index 4f089790b..b37e43127 100644 --- a/tests/results/test_namespace_examples/16_6choice_redefine.gitlab.md +++ b/tests/results/test_namespace_examples/16_6choice_redefine.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: c # A choice +rougail: + var: c ``` diff --git a/tests/results/test_namespace_examples/16_6choice_redefine.html b/tests/results/test_namespace_examples/16_6choice_redefine.html index 860e7290f..51736b428 100644 --- a/tests/results/test_namespace_examples/16_6choice_redefine.html +++ b/tests/results/test_namespace_examples/16_6choice_redefine.html @@ -1,4 +1,4 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: c                      # A choice
\ No newline at end of file +
rougail:
+  var: c
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_6choice_redefine.sh b/tests/results/test_namespace_examples/16_6choice_redefine.sh index 0b532893c..9d5b6d867 100644 --- a/tests/results/test_namespace_examples/16_6choice_redefine.sh +++ b/tests/results/test_namespace_examples/16_6choice_redefine.sh @@ -1,9 +1,6 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: c # A choice  +rougail:  + var: c  diff --git a/tests/results/test_namespace_examples/16_6exists_redefine_family.adoc b/tests/results/test_namespace_examples/16_6exists_redefine_family.adoc index 46ed1ce75..ffee7cfa6 100644 --- a/tests/results/test_namespace_examples/16_6exists_redefine_family.adoc +++ b/tests/results/test_namespace_examples/16_6exists_redefine_family.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - family1: # New description - variable1: example # A variable - family2: # A second family - variable2: example # A second variable +rougail: + family1: + variable1: example + family2: + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family1: # New description - variable1: example # A variable - family2: # A second family - variable2: example # A second variable +rougail: + family1: + variable1: example + family2: + variable2: example ---- diff --git a/tests/results/test_namespace_examples/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_examples/16_6exists_redefine_family.gitlab.md index 75ef0aa3e..ee8f23293 100644 --- a/tests/results/test_namespace_examples/16_6exists_redefine_family.gitlab.md +++ b/tests/results/test_namespace_examples/16_6exists_redefine_family.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - family1: # New description - variable1: example # A variable - family2: # A second family - variable2: example # A second variable +rougail: + family1: + variable1: example + family2: + variable2: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family1: # New description - variable1: example # A variable - family2: # A second family - variable2: example # A second variable +rougail: + family1: + variable1: example + family2: + variable2: example ``` diff --git a/tests/results/test_namespace_examples/16_6exists_redefine_family.html b/tests/results/test_namespace_examples/16_6exists_redefine_family.html index a3c2acbe4..4fc652959 100644 --- a/tests/results/test_namespace_examples/16_6exists_redefine_family.html +++ b/tests/results/test_namespace_examples/16_6exists_redefine_family.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family1:                    # New description
-    variable1: example        # A variable
-  family2:                    # A second family
-    variable2: example        # A second variable

Example with all variables modifiable

+
rougail:
+  family1:
+    variable1: example
+  family2:
+    variable2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family1:                    # New description
-    variable1: example        # A variable
-  family2:                    # A second family
-    variable2: example        # A second variable
\ No newline at end of file +
rougail:
+  family1:
+    variable1: example
+  family2:
+    variable2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16_6exists_redefine_family.sh b/tests/results/test_namespace_examples/16_6exists_redefine_family.sh index b1f50f8b3..28ea45462 100644 --- a/tests/results/test_namespace_examples/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_examples/16_6exists_redefine_family.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family1: # New description  - variable1: example # A variable  - family2: # A second family  - variable2: example # A second variable  - - +rougail:  + family1:  + variable1: example  + family2:  + variable2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family1: # New description  - variable1: example # A variable  - family2: # A second family  - variable2: example # A second variable  +rougail:  + family1:  + variable1: example  + family2:  + variable2: example  diff --git a/tests/results/test_namespace_examples/16exists_exists.adoc b/tests/results/test_namespace_examples/16exists_exists.adoc index 798be46be..7377522d5 100644 --- a/tests/results/test_namespace_examples/16exists_exists.adoc +++ b/tests/results/test_namespace_examples/16exists_exists.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - var: example # Description +rougail: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: example # Description +rougail: + var: example ---- diff --git a/tests/results/test_namespace_examples/16exists_exists.gitlab.md b/tests/results/test_namespace_examples/16exists_exists.gitlab.md index 77b85f451..bd63a31ef 100644 --- a/tests/results/test_namespace_examples/16exists_exists.gitlab.md +++ b/tests/results/test_namespace_examples/16exists_exists.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: example # Description +rougail: + var: example ``` @@ -11,8 +11,8 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: example # Description +rougail: + var: example ``` diff --git a/tests/results/test_namespace_examples/16exists_exists.html b/tests/results/test_namespace_examples/16exists_exists.html index c3df40e43..92485dd96 100644 --- a/tests/results/test_namespace_examples/16exists_exists.html +++ b/tests/results/test_namespace_examples/16exists_exists.html @@ -1,7 +1,7 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var: example                # Description

Example with all variables modifiable

+
rougail:
+  var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: example                # Description
\ No newline at end of file +
rougail:
+  var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/16exists_exists.sh b/tests/results/test_namespace_examples/16exists_exists.sh index acfdda220..d11e6d006 100644 --- a/tests/results/test_namespace_examples/16exists_exists.sh +++ b/tests/results/test_namespace_examples/16exists_exists.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: example # Description  - - +rougail:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: example # Description  +rougail:  + var: example  diff --git a/tests/results/test_namespace_examples/20_0family_append.adoc b/tests/results/test_namespace_examples/20_0family_append.adoc index 63a0c8dc6..82f699232 100644 --- a/tests/results/test_namespace_examples/20_0family_append.adoc +++ b/tests/results/test_namespace_examples/20_0family_append.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - var1: example # The first variable - var2: example # The second variable +rougail: + family: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family: # A family - var1: example # The first variable - var2: example # The second variable +rougail: + family: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/20_0family_append.gitlab.md b/tests/results/test_namespace_examples/20_0family_append.gitlab.md index 1f1cefd22..3b502220e 100644 --- a/tests/results/test_namespace_examples/20_0family_append.gitlab.md +++ b/tests/results/test_namespace_examples/20_0family_append.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # A family - var1: example # The first variable - var2: example # The second variable +rougail: + family: + var1: example + var2: example ``` @@ -13,10 +13,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # A family - var1: example # The first variable - var2: example # The second variable +rougail: + family: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/20_0family_append.html b/tests/results/test_namespace_examples/20_0family_append.html index f6dcfe920..d1dedf705 100644 --- a/tests/results/test_namespace_examples/20_0family_append.html +++ b/tests/results/test_namespace_examples/20_0family_append.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # A family
-    var1: example             # The first variable
-    var2: example             # The second variable

Example with all variables modifiable

+
rougail:
+  family:
+    var1: example
+    var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    var1: example             # The first variable
-    var2: example             # The second variable
\ No newline at end of file +
rougail:
+  family:
+    var1: example
+    var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0family_append.sh b/tests/results/test_namespace_examples/20_0family_append.sh index a7896b7ff..431b4423d 100644 --- a/tests/results/test_namespace_examples/20_0family_append.sh +++ b/tests/results/test_namespace_examples/20_0family_append.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # A family  - var1: example # The first variable  - var2: example # The second variable  - - +rougail:  + family:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - var1: example # The first variable  - var2: example # The second variable  +rougail:  + family:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/20_0multi_family.adoc b/tests/results/test_namespace_examples/20_0multi_family.adoc index 6e633c6e8..549a3ecca 100644 --- a/tests/results/test_namespace_examples/20_0multi_family.adoc +++ b/tests/results/test_namespace_examples/20_0multi_family.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ---- diff --git a/tests/results/test_namespace_examples/20_0multi_family.gitlab.md b/tests/results/test_namespace_examples/20_0multi_family.gitlab.md index e6e52dfaf..5f8118d7e 100644 --- a/tests/results/test_namespace_examples/20_0multi_family.gitlab.md +++ b/tests/results/test_namespace_examples/20_0multi_family.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ``` diff --git a/tests/results/test_namespace_examples/20_0multi_family.html b/tests/results/test_namespace_examples/20_0multi_family.html index 9caadaf86..a5a86db74 100644 --- a/tests/results/test_namespace_examples/20_0multi_family.html +++ b/tests/results/test_namespace_examples/20_0multi_family.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    subfamily:                # A sub family
-      variable: example       # A variable
\ No newline at end of file +
rougail:
+  family:
+    subfamily:
+      variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0multi_family.sh b/tests/results/test_namespace_examples/20_0multi_family.sh index 5d9dc0fe9..354bb7ed4 100644 --- a/tests/results/test_namespace_examples/20_0multi_family.sh +++ b/tests/results/test_namespace_examples/20_0multi_family.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - subfamily: # A sub family  - variable: example # A variable  +rougail:  + family:  + subfamily:  + variable: example  diff --git a/tests/results/test_namespace_examples/20_0multi_family_basic.adoc b/tests/results/test_namespace_examples/20_0multi_family_basic.adoc index e0aa60ebc..14fef4333 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_basic.adoc +++ b/tests/results/test_namespace_examples/20_0multi_family_basic.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ---- diff --git a/tests/results/test_namespace_examples/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_examples/20_0multi_family_basic.gitlab.md index d526eb96e..19fcffcfb 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_basic.gitlab.md +++ b/tests/results/test_namespace_examples/20_0multi_family_basic.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ``` @@ -13,10 +13,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ``` diff --git a/tests/results/test_namespace_examples/20_0multi_family_basic.html b/tests/results/test_namespace_examples/20_0multi_family_basic.html index 7695ce995..4b19034ff 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_basic.html +++ b/tests/results/test_namespace_examples/20_0multi_family_basic.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # A family
-    subfamily:                # A sub family
-      variable: example       # A variable

Example with all variables modifiable

+
rougail:
+  family:
+    subfamily:
+      variable: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    subfamily:                # A sub family
-      variable: example       # A variable
\ No newline at end of file +
rougail:
+  family:
+    subfamily:
+      variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0multi_family_basic.sh b/tests/results/test_namespace_examples/20_0multi_family_basic.sh index 85e280923..a769c1145 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_examples/20_0multi_family_basic.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # A family  - subfamily: # A sub family  - variable: example # A variable  - - +rougail:  + family:  + subfamily:  + variable: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - subfamily: # A sub family  - variable: example # A variable  +rougail:  + family:  + subfamily:  + variable: example  diff --git a/tests/results/test_namespace_examples/20_0multi_family_expert.adoc b/tests/results/test_namespace_examples/20_0multi_family_expert.adoc index 6e633c6e8..549a3ecca 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_expert.adoc +++ b/tests/results/test_namespace_examples/20_0multi_family_expert.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ---- diff --git a/tests/results/test_namespace_examples/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_examples/20_0multi_family_expert.gitlab.md index e6e52dfaf..5f8118d7e 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_expert.gitlab.md +++ b/tests/results/test_namespace_examples/20_0multi_family_expert.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # A family - subfamily: # A sub family - variable: example # A variable +rougail: + family: + subfamily: + variable: example ``` diff --git a/tests/results/test_namespace_examples/20_0multi_family_expert.html b/tests/results/test_namespace_examples/20_0multi_family_expert.html index 9caadaf86..a5a86db74 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_expert.html +++ b/tests/results/test_namespace_examples/20_0multi_family_expert.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    subfamily:                # A sub family
-      variable: example       # A variable
\ No newline at end of file +
rougail:
+  family:
+    subfamily:
+      variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0multi_family_expert.sh b/tests/results/test_namespace_examples/20_0multi_family_expert.sh index 5d9dc0fe9..354bb7ed4 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_examples/20_0multi_family_expert.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - subfamily: # A sub family  - variable: example # A variable  +rougail:  + family:  + subfamily:  + variable: example  diff --git a/tests/results/test_namespace_examples/20_0multi_family_order.adoc b/tests/results/test_namespace_examples/20_0multi_family_order.adoc index 37b9c6a96..62a557ffe 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_order.adoc +++ b/tests/results/test_namespace_examples/20_0multi_family_order.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable - family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +rougail: + variable: example + family: + variable1: example + subfamily: + variable: example + variable2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - variable: example # A variable - family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +rougail: + variable: example + family: + variable1: example + subfamily: + variable: example + variable2: example ---- diff --git a/tests/results/test_namespace_examples/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_examples/20_0multi_family_order.gitlab.md index 9f1efad45..6a25c0810 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_order.gitlab.md +++ b/tests/results/test_namespace_examples/20_0multi_family_order.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - variable: example # A variable - family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +rougail: + variable: example + family: + variable1: example + subfamily: + variable: example + variable2: example ``` @@ -16,13 +16,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - variable: example # A variable - family: # A family - variable1: example # A first variable - subfamily: # A sub family - variable: example # A variable - variable2: example # A second variable +rougail: + variable: example + family: + variable1: example + subfamily: + variable: example + variable2: example ``` diff --git a/tests/results/test_namespace_examples/20_0multi_family_order.html b/tests/results/test_namespace_examples/20_0multi_family_order.html index c665b2b0f..e01520ef7 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_order.html +++ b/tests/results/test_namespace_examples/20_0multi_family_order.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  variable: example           # A variable
-  family:                     # A family
-    variable1: example        # A first variable
-    subfamily:                # A sub family
-      variable: example       # A variable
-    variable2: example        # A second variable

Example with all variables modifiable

+
rougail:
+  variable: example
+  family:
+    variable1: example
+    subfamily:
+      variable: example
+    variable2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  variable: example           # A variable
-  family:                     # A family
-    variable1: example        # A first variable
-    subfamily:                # A sub family
-      variable: example       # A variable
-    variable2: example        # A second variable
\ No newline at end of file +
rougail:
+  variable: example
+  family:
+    variable1: example
+    subfamily:
+      variable: example
+    variable2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0multi_family_order.sh b/tests/results/test_namespace_examples/20_0multi_family_order.sh index 4fdbe4239..de34f55a9 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_order.sh +++ b/tests/results/test_namespace_examples/20_0multi_family_order.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - variable: example # A variable  - family: # A family  - variable1: example # A first variable  - subfamily: # A sub family  - variable: example # A variable  - variable2: example # A second variable  - - +rougail:  + variable: example  + family:  + variable1: example  + subfamily:  + variable: example  + variable2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - variable: example # A variable  - family: # A family  - variable1: example # A first variable  - subfamily: # A sub family  - variable: example # A variable  - variable2: example # A second variable  +rougail:  + variable: example  + family:  + variable1: example  + subfamily:  + variable: example  + variable2: example  diff --git a/tests/results/test_namespace_examples/20_0validators_differ_redefine.adoc b/tests/results/test_namespace_examples/20_0validators_differ_redefine.adoc index 9683aec62..1d2d161df 100644 --- a/tests/results/test_namespace_examples/20_0validators_differ_redefine.adoc +++ b/tests/results/test_namespace_examples/20_0validators_differ_redefine.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var1: no # A first variable - var2: no # A second variable - var3: yes # A third variable +rougail: + var1: no + var2: no + var3: yes ---- diff --git a/tests/results/test_namespace_examples/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_examples/20_0validators_differ_redefine.gitlab.md index 45aa32b17..946c42345 100644 --- a/tests/results/test_namespace_examples/20_0validators_differ_redefine.gitlab.md +++ b/tests/results/test_namespace_examples/20_0validators_differ_redefine.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var1: no # A first variable - var2: no # A second variable - var3: yes # A third variable +rougail: + var1: no + var2: no + var3: yes ``` diff --git a/tests/results/test_namespace_examples/20_0validators_differ_redefine.html b/tests/results/test_namespace_examples/20_0validators_differ_redefine.html index 01c0ba902..cc74394d5 100644 --- a/tests/results/test_namespace_examples/20_0validators_differ_redefine.html +++ b/tests/results/test_namespace_examples/20_0validators_differ_redefine.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: no                    # A first variable
-  var2: no                    # A second variable
-  var3: yes                   # A third variable
\ No newline at end of file +
rougail:
+  var1: no
+  var2: no
+  var3: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_0validators_differ_redefine.sh b/tests/results/test_namespace_examples/20_0validators_differ_redefine.sh index 8904272fa..700238f25 100644 --- a/tests/results/test_namespace_examples/20_0validators_differ_redefine.sh +++ b/tests/results/test_namespace_examples/20_0validators_differ_redefine.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: no # A first variable  - var2: no # A second variable  - var3: yes # A third variable  +rougail:  + var1: no  + var2: no  + var3: yes  diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.adoc b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.adoc index e0c7049ca..ee9e0fab1 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - my_family: # my_family +rougail: + my_family: dynamic: - val1 - val2 - var: true # A variable + var: true ---- diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.gitlab.md index 9eeb5eb44..83ba39371 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.gitlab.md +++ b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - my_family: # my_family +rougail: + my_family: dynamic: - val1 - val2 - var: true # A variable + var: true ``` diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.html b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.html index bab555651..d1032c9c9 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.html +++ b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  my_family:                  # my_family
+
rougail:
+  my_family:
     dynamic:
       - val1
       - val2
-    var: true                 # A variable
\ No newline at end of file + var: true
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.sh index 3b1960d3e..f5be68ea9 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_namespace_examples/20_2family_looks_like_dynamic.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - my_family: # my_family  +rougail:  + my_family:   dynamic:   - val1   - val2  - var: true # A variable  + var: true  diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_variable.adoc b/tests/results/test_namespace_examples/20_2family_looks_like_variable.adoc index 1cc2263ce..bca1079ea 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_variable.adoc +++ b/tests/results/test_namespace_examples/20_2family_looks_like_variable.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - my_family: # my_family +rougail: + my_family: default: true ---- diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_examples/20_2family_looks_like_variable.gitlab.md index 68d444469..faac243d1 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_variable.gitlab.md +++ b/tests/results/test_namespace_examples/20_2family_looks_like_variable.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - my_family: # my_family +rougail: + my_family: default: true ``` diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_variable.html b/tests/results/test_namespace_examples/20_2family_looks_like_variable.html index 526737d31..2852f0dc0 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_variable.html +++ b/tests/results/test_namespace_examples/20_2family_looks_like_variable.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  my_family:                  # my_family
+
rougail:
+  my_family:
     default: true
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_2family_looks_like_variable.sh b/tests/results/test_namespace_examples/20_2family_looks_like_variable.sh index d4db7ae7e..19f10e402 100644 --- a/tests/results/test_namespace_examples/20_2family_looks_like_variable.sh +++ b/tests/results/test_namespace_examples/20_2family_looks_like_variable.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - my_family: # my_family  +rougail:  + my_family:   default: true  diff --git a/tests/results/test_namespace_examples/20_9default_information_parent.adoc b/tests/results/test_namespace_examples/20_9default_information_parent.adoc index 75426c521..de074535d 100644 --- a/tests/results/test_namespace_examples/20_9default_information_parent.adoc +++ b/tests/results/test_namespace_examples/20_9default_information_parent.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - family: # family - var1: example # A first variable +rougail: + family: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - family: # family - var1: example # A first variable - var2: example # A second variable +rougail: + family: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_examples/20_9default_information_parent.gitlab.md index e0d87fb92..8740ec0bd 100644 --- a/tests/results/test_namespace_examples/20_9default_information_parent.gitlab.md +++ b/tests/results/test_namespace_examples/20_9default_information_parent.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - family: # family - var1: example # A first variable +rougail: + family: + var1: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - family: # family - var1: example # A first variable - var2: example # A second variable +rougail: + family: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/20_9default_information_parent.html b/tests/results/test_namespace_examples/20_9default_information_parent.html index 55c9c746a..eaad2728d 100644 --- a/tests/results/test_namespace_examples/20_9default_information_parent.html +++ b/tests/results/test_namespace_examples/20_9default_information_parent.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # family
-    var1: example             # A first variable

Example with all variables modifiable

+
rougail:
+  family:
+    var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # family
-    var1: example             # A first variable
-    var2: example             # A second variable
\ No newline at end of file +
rougail:
+  family:
+    var1: example
+    var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/20_9default_information_parent.sh b/tests/results/test_namespace_examples/20_9default_information_parent.sh index 19e10dabc..498a0dcd0 100644 --- a/tests/results/test_namespace_examples/20_9default_information_parent.sh +++ b/tests/results/test_namespace_examples/20_9default_information_parent.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # family  - var1: example # A first variable  - - +rougail:  + family:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - family: # family  - var1: example # A first variable  - var2: example # A second variable  +rougail:  + family:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition.adoc b/tests/results/test_namespace_examples/24_0family_hidden_condition.adoc index 036b26c64..30ee5a119 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - family: # Possibly hidden family - var1: example # A variable +rougail: + family: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - var1: example # A variable +rougail: + condition: no + family: + var1: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_condition.gitlab.md index 6388abf3b..f3e8d74e8 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - family: # Possibly hidden family - var1: example # A variable +rougail: + family: + var1: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - var1: example # A variable +rougail: + condition: no + family: + var1: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition.html b/tests/results/test_namespace_examples/24_0family_hidden_condition.html index cc0b25afc..fb9c0aa1a 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # Possibly hidden family
-    var1: example             # A variable

Example with all variables modifiable

+
rougail:
+  family:
+    var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # The variable use has condition
-  family:                     # Possibly hidden family
-    var1: example             # A variable
\ No newline at end of file +
rougail:
+  condition: no
+  family:
+    var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition.sh b/tests/results/test_namespace_examples/24_0family_hidden_condition.sh index c1be8536d..020a94d8b 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # Possibly hidden family  - var1: example # A variable  - - +rougail:  + family:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # The variable use has condition  - family: # Possibly hidden family  - var1: example # A variable  +rougail:  + condition: no  + family:  + var1: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.adoc b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.adoc index d927bad9b..59cd0ceda 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - condition: false # A conditional variable - family: # A family - variable: example # A variable +rougail: + condition: false + family: + variable: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.gitlab.md index 49bc2a64d..aa311a8be 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - condition: false # A conditional variable - family: # A family - variable: example # A variable +rougail: + condition: false + family: + variable: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.html b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.html index 404c5c8f0..f57392c1f 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: false            # A conditional variable
-  family:                     # A family
-    variable: example         # A variable
\ No newline at end of file +
rougail:
+  condition: false
+  family:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.sh index 79c98afa3..706ab0ddc 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: false # A conditional variable  - family: # A family  - variable: example # A variable  +rougail:  + condition: false  + family:  + variable: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.adoc b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.adoc index 6c4fed69e..d7fd32021 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -rougail: # Rougail - family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +rougail: + family: + subfamily: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +rougail: + condition: no + family: + subfamily: + var1: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.gitlab.md index 0c39df495..78f32c227 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +rougail: + family: + subfamily: + var1: example ``` @@ -13,11 +13,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - subfamily: # subfamily - var1: example # A variable +rougail: + condition: no + family: + subfamily: + var1: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.html b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.html index 92afc0ae2..7b7ef97da 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # Possibly hidden family
-    subfamily:                # subfamily
-      var1: example           # A variable

Example with all variables modifiable

+
rougail:
+  family:
+    subfamily:
+      var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # The variable use has condition
-  family:                     # Possibly hidden family
-    subfamily:                # subfamily
-      var1: example           # A variable
\ No newline at end of file +
rougail:
+  condition: no
+  family:
+    subfamily:
+      var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.sh index 39443f2b4..e0a7f3ddd 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # Possibly hidden family  - subfamily: # subfamily  - var1: example # A variable  - - +rougail:  + family:  + subfamily:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # The variable use has condition  - family: # Possibly hidden family  - subfamily: # subfamily  - var1: example # A variable  +rougail:  + condition: no  + family:  + subfamily:  + var1: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.adoc index 4c8601f80..edc8a28b5 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - condition: true # The variable use has condition - family: # Possibly hidden family - subfamily: # A subfamily - var1: example # A variable +rougail: + condition: true + family: + subfamily: + var1: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md index 7e42c73b8..d5c20a2a6 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - condition: true # The variable use has condition - family: # Possibly hidden family - subfamily: # A subfamily - var1: example # A variable +rougail: + condition: true + family: + subfamily: + var1: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.html b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.html index b96805d11..535965fc6 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: true             # The variable use has condition
-  family:                     # Possibly hidden family
-    subfamily:                # A subfamily
-      var1: example           # A variable
\ No newline at end of file +
rougail:
+  condition: true
+  family:
+    subfamily:
+      var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.sh index 7a7a7f0e4..56b332b8c 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: true # The variable use has condition  - family: # Possibly hidden family  - subfamily: # A subfamily  - var1: example # A variable  +rougail:  + condition: true  + family:  + subfamily:  + var1: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.adoc b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.adoc index 3437a92e1..499fe0052 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - condition1: false # A first conditional variable - condition2: false # A second conditional variable - family: # A family - variable: example # A variable +rougail: + condition1: false + condition2: false + family: + variable: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.gitlab.md index 949d1df2b..38833d430 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - condition1: false # A first conditional variable - condition2: false # A second conditional variable - family: # A family - variable: example # A variable +rougail: + condition1: false + condition2: false + family: + variable: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.html b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.html index 41c75b2d6..693bd4fe9 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition1: false           # A first conditional variable
-  condition2: false           # A second conditional variable
-  family:                     # A family
-    variable: example         # A variable
\ No newline at end of file +
rougail:
+  condition1: false
+  condition2: false
+  family:
+    variable: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.sh index cd836f77f..7c55f8250 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition1: false # A first conditional variable  - condition2: false # A second conditional variable  - family: # A family  - variable: example # A variable  +rougail:  + condition1: false  + condition2: false  + family:  + variable: example  diff --git a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.adoc b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.adoc index 521c947ee..7fa52e35b 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -rougail: # Rougail - family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +rougail: + family: + sub_family: + var1: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +rougail: + condition: no + family: + sub_family: + var1: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.gitlab.md index 361cc2d94..b94402251 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +rougail: + family: + sub_family: + var1: example ``` @@ -13,11 +13,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: no # The variable use has condition - family: # Possibly hidden family - sub_family: # A subfamily - var1: example # A variable +rougail: + condition: no + family: + sub_family: + var1: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.html b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.html index d67f09374..6e06e513a 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.html +++ b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  family:                     # Possibly hidden family
-    sub_family:               # A subfamily
-      var1: example           # A variable

Example with all variables modifiable

+
rougail:
+  family:
+    sub_family:
+      var1: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # The variable use has condition
-  family:                     # Possibly hidden family
-    sub_family:               # A subfamily
-      var1: example           # A variable
\ No newline at end of file +
rougail:
+  condition: no
+  family:
+    sub_family:
+      var1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.sh index ddd20714a..be9d47c2e 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - family: # Possibly hidden family  - sub_family: # A subfamily  - var1: example # A variable  - - +rougail:  + family:  + sub_family:  + var1: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # The variable use has condition  - family: # Possibly hidden family  - sub_family: # A subfamily  - var1: example # A variable  +rougail:  + condition: no  + family:  + sub_family:  + var1: example  diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition.adoc b/tests/results/test_namespace_examples/24_0family_mandatory_condition.adoc index d1361d336..c47ac50c4 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition.adoc +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - var: example # A variable +rougail: + condition: no + var: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_examples/24_0family_mandatory_condition.gitlab.md index 48e216217..8c610aebc 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - var: example # A variable +rougail: + condition: no + var: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition.html b/tests/results/test_namespace_examples/24_0family_mandatory_condition.html index 48d618222..25f640ba4 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition.html +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  var: example                # A variable
\ No newline at end of file +
rougail:
+  condition: no
+  var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition.sh b/tests/results/test_namespace_examples/24_0family_mandatory_condition.sh index 5276c2162..acfe3f2fd 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - var: example # A variable  +rougail:  + condition: no  + var: example  diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.adoc b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.adoc index e802d9384..ce167fa70 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - condition: true # A condition - var: example # A variable +rougail: + condition: true + var: example ---- diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.gitlab.md index 885f5c744..30a28882a 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.gitlab.md +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - condition: true # A condition - var: example # A variable +rougail: + condition: true + var: example ``` diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.html b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.html index 8c8b40fa6..7d19d26e4 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.html +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: true             # A condition
-  var: example                # A variable
\ No newline at end of file +
rougail:
+  condition: true
+  var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.sh index e3dc9b7e1..f0998c51d 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: true # A condition  - var: example # A variable  +rougail:  + condition: true  + var: example  diff --git a/tests/results/test_namespace_examples/24_7validators_variable_optional.adoc b/tests/results/test_namespace_examples/24_7validators_variable_optional.adoc index 42484a2d9..719983a5e 100644 --- a/tests/results/test_namespace_examples/24_7validators_variable_optional.adoc +++ b/tests/results/test_namespace_examples/24_7validators_variable_optional.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - general: # A family - int: 5 # A first integer +rougail: + general: + int: 5 ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - general: # A family - int: 5 # A first integer - int2: 1 # A second integer +rougail: + general: + int: 5 + int2: 1 ---- diff --git a/tests/results/test_namespace_examples/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_examples/24_7validators_variable_optional.gitlab.md index 3fd534591..b71589079 100644 --- a/tests/results/test_namespace_examples/24_7validators_variable_optional.gitlab.md +++ b/tests/results/test_namespace_examples/24_7validators_variable_optional.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - general: # A family - int: 5 # A first integer +rougail: + general: + int: 5 ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - general: # A family - int: 5 # A first integer - int2: 1 # A second integer +rougail: + general: + int: 5 + int2: 1 ``` diff --git a/tests/results/test_namespace_examples/24_7validators_variable_optional.html b/tests/results/test_namespace_examples/24_7validators_variable_optional.html index 02167c391..46cb11cb9 100644 --- a/tests/results/test_namespace_examples/24_7validators_variable_optional.html +++ b/tests/results/test_namespace_examples/24_7validators_variable_optional.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  general:                    # A family
-    int: 5                    # A first integer

Example with all variables modifiable

+
rougail:
+  general:
+    int: 5

Example with all variables modifiable

-
rougail:                      # Rougail
-  general:                    # A family
-    int: 5                    # A first integer
-    int2: 1                   # A second integer
\ No newline at end of file +
rougail:
+  general:
+    int: 5
+    int2: 1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/24_7validators_variable_optional.sh b/tests/results/test_namespace_examples/24_7validators_variable_optional.sh index 5dcf874d0..02159d7ba 100644 --- a/tests/results/test_namespace_examples/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_examples/24_7validators_variable_optional.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - general: # A family  - int: 5 # A first integer  - - +rougail:  + general:  + int: 5  Example with all variables modifiable - ---  -rougail: # Rougail  - general: # A family  - int: 5 # A first integer  - int2: 1 # A second integer  +rougail:  + general:  + int: 5  + int2: 1  diff --git a/tests/results/test_namespace_examples/40_0leadership.adoc b/tests/results/test_namespace_examples/40_0leadership.adoc index 1dc7c9efa..98efedc4e 100644 --- a/tests/results/test_namespace_examples/40_0leadership.adoc +++ b/tests/results/test_namespace_examples/40_0leadership.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leader: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/40_0leadership.gitlab.md b/tests/results/test_namespace_examples/40_0leadership.gitlab.md index bd718b331..2e71458b6 100644 --- a/tests/results/test_namespace_examples/40_0leadership.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leader: + - leader: example + follower1: example + follower2: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/40_0leadership.html b/tests/results/test_namespace_examples/40_0leadership.html index d8e2fc394..a742eac66 100644 --- a/tests/results/test_namespace_examples/40_0leadership.html +++ b/tests/results/test_namespace_examples/40_0leadership.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower
-      follower2: example      # An other follower

Example with all variables modifiable

+
rougail:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower
-      follower2: example      # An other follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership.sh b/tests/results/test_namespace_examples/40_0leadership.sh index 6b34fa03a..09e3b4fe1 100644 --- a/tests/results/test_namespace_examples/40_0leadership.sh +++ b/tests/results/test_namespace_examples/40_0leadership.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  - - +rougail:  + leader:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  +rougail:  + leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/40_0leadership_diff_name.adoc b/tests/results/test_namespace_examples/40_0leadership_diff_name.adoc index be23eabae..0d522456e 100644 --- a/tests/results/test_namespace_examples/40_0leadership_diff_name.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_diff_name.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leadership: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_diff_name.gitlab.md index 5dcb3d4c9..523e2cae3 100644 --- a/tests/results/test_namespace_examples/40_0leadership_diff_name.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_diff_name.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leadership: + - leader: example + follower1: example + follower2: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower - follower2: example # An other follower +rougail: + leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_diff_name.html b/tests/results/test_namespace_examples/40_0leadership_diff_name.html index 316300e68..17aed58aa 100644 --- a/tests/results/test_namespace_examples/40_0leadership_diff_name.html +++ b/tests/results/test_namespace_examples/40_0leadership_diff_name.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower
-      follower2: example      # An other follower

Example with all variables modifiable

+
rougail:
+  leadership:
+    - leader: example
+      follower1: example
+      follower2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower
-      follower2: example      # An other follower
\ No newline at end of file +
rougail:
+  leadership:
+    - leader: example
+      follower1: example
+      follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_diff_name.sh b/tests/results/test_namespace_examples/40_0leadership_diff_name.sh index 9360453b6..dc879841e 100644 --- a/tests/results/test_namespace_examples/40_0leadership_diff_name.sh +++ b/tests/results/test_namespace_examples/40_0leadership_diff_name.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  - - +rougail:  + leadership:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower  - follower2: example # An other follower  +rougail:  + leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.adoc b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.adoc index 4e720d07d..6463b0567 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader +rougail: + leader: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: value # A follower - follower2: value # A second follower +rougail: + leader: + - leader: example + follower1: value + follower2: value ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.gitlab.md index 8889a6339..5526404ac 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader +rougail: + leader: + - leader: example ``` @@ -12,11 +12,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: value # A follower - follower2: value # A second follower +rougail: + leader: + - leader: example + follower1: value + follower2: value ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.html b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.html index e2108adf1..e6f31be28 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.html +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader

Example with all variables modifiable

+
rougail:
+  leader:
+    - leader: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: value        # A follower
-      follower2: value        # A second follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: value
+      follower2: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.sh index 8a3257c09..42c1feafe 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - - +rougail:  + leader:  + - leader: example  Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: value # A follower  - follower2: value # A second follower  +rougail:  + leader:  + - leader: example  + follower1: value  + follower2: value  diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.adoc b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.adoc index 00ea60faa..131e04393 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: leader # A leader - follower1: # A follower1 +rougail: + leader: + - leader: leader + follower1: - value - follower2: # A follower2 + follower2: - value1 - value2 ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.gitlab.md index 9f81c6dda..a05330d99 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: leader # A leader - follower1: # A follower1 +rougail: + leader: + - leader: leader + follower1: - value - follower2: # A follower2 + follower2: - value1 - value2 ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.html b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.html index c8a40eeb7..0fc8257b5 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.html +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: leader          # A leader
-      follower1:              # A follower1
+
rougail:
+  leader:
+    - leader: leader
+      follower1:
         - value
-      follower2:              # A follower2
+      follower2:
         - value1
         - value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.sh index 92dc0713d..d203623f1 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.sh +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: leader # A leader  - follower1: # A follower1  +rougail:  + leader:  + - leader: leader  + follower1:   - value  - follower2: # A follower2  + follower2:   - value1   - value2  diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.adoc b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.adoc index e44ce54e5..32780d397 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: leader # The leader - follower1: # The follower1 +rougail: + leader: + - leader: leader + follower1: - value - follower2: # The follower2 + follower2: - value ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.gitlab.md index 29f850507..0cff1d585 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: leader # The leader - follower1: # The follower1 +rougail: + leader: + - leader: leader + follower1: - value - follower2: # The follower2 + follower2: - value ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.html b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.html index d3dcc4e62..045ddffd7 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.html +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: leader          # The leader
-      follower1:              # The follower1
+
rougail:
+  leader:
+    - leader: leader
+      follower1:
         - value
-      follower2:              # The follower2
+      follower2:
         - value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.sh index 04a9b423b..9910b1565 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.sh +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: leader # The leader  - follower1: # The follower1  +rougail:  + leader:  + - leader: leader  + follower1:   - value  - follower2: # The follower2  + follower2:   - value  diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.adoc b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.adoc index 65b3799b8..f94b5aa4f 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: value # A follower with default value +rougail: + leader: + - leader: example + follower1: value ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.gitlab.md index c435c3a74..85dc75262 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: value # A follower with default value +rougail: + leader: + - leader: example + follower1: value ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.html b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.html index 0a272a716..d70508e0c 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.html +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: value        # A follower with default value
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.sh index fdf03f74f..fbd917b22 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.sh +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: value # A follower with default value  +rougail:  + leader:  + - leader: example  + follower1: value  diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_follower.adoc b/tests/results/test_namespace_examples/40_0leadership_leader_follower.adoc index b653a055c..0d21d3c4d 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_follower.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_leader_follower.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: value1 # A leader - follower: value1 # A follower - - leader: value2 # A leader - follower: value2 # A follower +rougail: + leadership: + - leader: value1 + follower: value1 + - leader: value2 + follower: value2 ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_leader_follower.gitlab.md index 977fbb207..30c133497 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_follower.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_leader_follower.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: value1 # A leader - follower: value1 # A follower - - leader: value2 # A leader - follower: value2 # A follower +rougail: + leadership: + - leader: value1 + follower: value1 + - leader: value2 + follower: value2 ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_follower.html b/tests/results/test_namespace_examples/40_0leadership_leader_follower.html index 6879630f7..c8d929a2c 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_follower.html +++ b/tests/results/test_namespace_examples/40_0leadership_leader_follower.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: value1          # A leader
-      follower: value1        # A follower
-    - leader: value2          # A leader
-      follower: value2        # A follower
\ No newline at end of file +
rougail:
+  leadership:
+    - leader: value1
+      follower: value1
+    - leader: value2
+      follower: value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_follower.sh b/tests/results/test_namespace_examples/40_0leadership_leader_follower.sh index 587e3b68d..4c6937e48 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_follower.sh +++ b/tests/results/test_namespace_examples/40_0leadership_leader_follower.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: value1 # A leader  - follower: value1 # A follower  - - leader: value2 # A leader  - follower: value2 # A follower  +rougail:  + leadership:  + - leader: value1  + follower: value1  + - leader: value2  + follower: value2  diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.adoc b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.adoc index 3412d2951..2c6a31942 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +rougail: + general1: + leader: + - leader: example + follower1: example + follower2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - general: # general - mode_conteneur_actif: non # No change - general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +rougail: + general: + mode_conteneur_actif: non + general1: + leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.gitlab.md index 408d07429..76c7343fa 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +rougail: + general1: + leader: + - leader: example + follower1: example + follower2: example ``` @@ -15,14 +15,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - general: # general - mode_conteneur_actif: non # No change - general1: # general1 - leader: # Leader - - leader: example # Leader - follower1: example # Follower1 - follower2: example # Follower2 +rougail: + general: + mode_conteneur_actif: non + general1: + leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.html b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.html index 64e774d41..08ee861ac 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.html +++ b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  general1:                   # general1
-    leader:                   # Leader
-      - leader: example       # Leader
-        follower1: example    # Follower1
-        follower2: example    # Follower2

Example with all variables modifiable

+
rougail:
+  general1:
+    leader:
+      - leader: example
+        follower1: example
+        follower2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  general:                    # general
-    mode_conteneur_actif: non # No change
-  general1:                   # general1
-    leader:                   # Leader
-      - leader: example       # Leader
-        follower1: example    # Follower1
-        follower2: example    # Follower2
\ No newline at end of file +
rougail:
+  general:
+    mode_conteneur_actif: non
+  general1:
+    leader:
+      - leader: example
+        follower1: example
+        follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.sh index 1b33651a4..e39d0a70c 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - general1: # general1  - leader: # Leader  - - leader: example # Leader  - follower1: example # Follower1  - follower2: example # Follower2  - - +rougail:  + general1:  + leader:  + - leader: example  + follower1: example  + follower2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - general: # general  - mode_conteneur_actif: non # No change  - general1: # general1  - leader: # Leader  - - leader: example # Leader  - follower1: example # Follower1  - follower2: example # Follower2  +rougail:  + general:  + mode_conteneur_actif: non  + general1:  + leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/40_0leadership_reduce.adoc b/tests/results/test_namespace_examples/40_0leadership_reduce.adoc index 53f76dc66..26a199336 100644 --- a/tests/results/test_namespace_examples/40_0leadership_reduce.adoc +++ b/tests/results/test_namespace_examples/40_0leadership_reduce.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: val1 # A leader - follower: example # A follower - - leader: val2 # A leader - follower: example # A follower +rougail: + leadership: + - leader: val1 + follower: example + - leader: val2 + follower: example ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_examples/40_0leadership_reduce.gitlab.md index fafc4f976..f42a84393 100644 --- a/tests/results/test_namespace_examples/40_0leadership_reduce.gitlab.md +++ b/tests/results/test_namespace_examples/40_0leadership_reduce.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: val1 # A leader - follower: example # A follower - - leader: val2 # A leader - follower: example # A follower +rougail: + leadership: + - leader: val1 + follower: example + - leader: val2 + follower: example ``` diff --git a/tests/results/test_namespace_examples/40_0leadership_reduce.html b/tests/results/test_namespace_examples/40_0leadership_reduce.html index ac8495d29..f6ccb84bf 100644 --- a/tests/results/test_namespace_examples/40_0leadership_reduce.html +++ b/tests/results/test_namespace_examples/40_0leadership_reduce.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: val1            # A leader
-      follower: example       # A follower
-    - leader: val2            # A leader
-      follower: example       # A follower
\ No newline at end of file +
rougail:
+  leadership:
+    - leader: val1
+      follower: example
+    - leader: val2
+      follower: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_0leadership_reduce.sh b/tests/results/test_namespace_examples/40_0leadership_reduce.sh index 16d97fea4..44f786c5d 100644 --- a/tests/results/test_namespace_examples/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_examples/40_0leadership_reduce.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: val1 # A leader  - follower: example # A follower  - - leader: val2 # A leader  - follower: example # A follower  +rougail:  + leadership:  + - leader: val1  + follower: example  + - leader: val2  + follower: example  diff --git a/tests/results/test_namespace_examples/40_1leadership_append_follower.adoc b/tests/results/test_namespace_examples/40_1leadership_append_follower.adoc index f7a3db2d1..28a1229c6 100644 --- a/tests/results/test_namespace_examples/40_1leadership_append_follower.adoc +++ b/tests/results/test_namespace_examples/40_1leadership_append_follower.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +rougail: + leader: + - leader: example + follower1: example + follower2: example + follower3: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +rougail: + leader: + - leader: example + follower1: example + follower2: example + follower3: example ---- diff --git a/tests/results/test_namespace_examples/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_examples/40_1leadership_append_follower.gitlab.md index ad1ae68f1..29612eb2a 100644 --- a/tests/results/test_namespace_examples/40_1leadership_append_follower.gitlab.md +++ b/tests/results/test_namespace_examples/40_1leadership_append_follower.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +rougail: + leader: + - leader: example + follower1: example + follower2: example + follower3: example ``` @@ -15,12 +15,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # The leader - follower1: example # The follower1 - follower2: example # The follower2 - follower3: example # The follower3 +rougail: + leader: + - leader: example + follower1: example + follower2: example + follower3: example ``` diff --git a/tests/results/test_namespace_examples/40_1leadership_append_follower.html b/tests/results/test_namespace_examples/40_1leadership_append_follower.html index bad2f23de..463366625 100644 --- a/tests/results/test_namespace_examples/40_1leadership_append_follower.html +++ b/tests/results/test_namespace_examples/40_1leadership_append_follower.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # The leader
-      follower1: example      # The follower1
-      follower2: example      # The follower2
-      follower3: example      # The follower3

Example with all variables modifiable

+
rougail:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example
+      follower3: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # The leader
-      follower1: example      # The follower1
-      follower2: example      # The follower2
-      follower3: example      # The follower3
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example
+      follower3: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_1leadership_append_follower.sh b/tests/results/test_namespace_examples/40_1leadership_append_follower.sh index a949948c6..2fbbde4d8 100644 --- a/tests/results/test_namespace_examples/40_1leadership_append_follower.sh +++ b/tests/results/test_namespace_examples/40_1leadership_append_follower.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # The leader  - follower1: example # The follower1  - follower2: example # The follower2  - follower3: example # The follower3  - - +rougail:  + leader:  + - leader: example  + follower1: example  + follower2: example  + follower3: example  Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # The leader  - follower1: example # The follower1  - follower2: example # The follower2  - follower3: example # The follower3  +rougail:  + leader:  + - leader: example  + follower1: example  + follower2: example  + follower3: example  diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index.adoc b/tests/results/test_namespace_examples/40_2leadership_calculation_index.adoc index 853834753..5fa6273f1 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index.adoc +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ---- diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_examples/40_2leadership_calculation_index.gitlab.md index 06ca4a33b..2a589a8e3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index.gitlab.md +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ``` diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index.html b/tests/results/test_namespace_examples/40_2leadership_calculation_index.html index e33db839c..91c73ba81 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index.html +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: a               # A leader
-      follower1: 0            # A follower
-    - leader: b               # A leader
-      follower1: 1            # A follower
-    - leader: c               # A leader
-      follower1: 2            # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: a
+      follower1: 0
+    - leader: b
+      follower1: 1
+    - leader: c
+      follower1: 2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index.sh b/tests/results/test_namespace_examples/40_2leadership_calculation_index.sh index 001ba6e38..1e4dc0ff3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index.sh +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: a # A leader  - follower1: 0 # A follower  - - leader: b # A leader  - follower1: 1 # A follower  - - leader: c # A leader  - follower1: 2 # A follower  +rougail:  + leader:  + - leader: a  + follower1: 0  + - leader: b  + follower1: 1  + - leader: c  + follower1: 2  diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.adoc b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.adoc index 853834753..5fa6273f1 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ---- diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.gitlab.md index 06ca4a33b..2a589a8e3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.gitlab.md +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ``` diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.html b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.html index e33db839c..91c73ba81 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.html +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: a               # A leader
-      follower1: 0            # A follower
-    - leader: b               # A leader
-      follower1: 1            # A follower
-    - leader: c               # A leader
-      follower1: 2            # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: a
+      follower1: 0
+    - leader: b
+      follower1: 1
+    - leader: c
+      follower1: 2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.sh index 001ba6e38..1e4dc0ff3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index_2.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: a # A leader  - follower1: 0 # A follower  - - leader: b # A leader  - follower1: 1 # A follower  - - leader: c # A leader  - follower1: 2 # A follower  +rougail:  + leader:  + - leader: a  + follower1: 0  + - leader: b  + follower1: 1  + - leader: c  + follower1: 2  diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.adoc b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.adoc index 33036bfe1..5fa6273f1 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.adoc +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # Leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ---- diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.gitlab.md index aa9d59036..2a589a8e3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.gitlab.md +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - leader: # Leadership - - leader: a # A leader - follower1: 0 # A follower - - leader: b # A leader - follower1: 1 # A follower - - leader: c # A leader - follower1: 2 # A follower +rougail: + leader: + - leader: a + follower1: 0 + - leader: b + follower1: 1 + - leader: c + follower1: 2 ``` diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.html b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.html index 57a9374a3..91c73ba81 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.html +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # Leadership
-    - leader: a               # A leader
-      follower1: 0            # A follower
-    - leader: b               # A leader
-      follower1: 1            # A follower
-    - leader: c               # A leader
-      follower1: 2            # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: a
+      follower1: 0
+    - leader: b
+      follower1: 1
+    - leader: c
+      follower1: 2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.sh index 18c3d8af1..1e4dc0ff3 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.sh +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # Leadership  - - leader: a # A leader  - follower1: 0 # A follower  - - leader: b # A leader  - follower1: 1 # A follower  - - leader: c # A leader  - follower1: 2 # A follower  +rougail:  + leader:  + - leader: a  + follower1: 0  + - leader: b  + follower1: 1  + - leader: c  + follower1: 2  diff --git a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.adoc b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.adoc index 932e38a1c..e9d6f594f 100644 --- a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.adoc +++ b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: val1 # A leader - follower1: example # A first follower - follower2: example # A second follower - - leader: val2 # A leader - follower1: example # A first follower - follower2: example # A second follower +rougail: + leader: + - leader: val1 + follower1: example + follower2: example + - leader: val2 + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.gitlab.md index 015be639d..54aeb1768 100644 --- a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: val1 # A leader - follower1: example # A first follower - follower2: example # A second follower - - leader: val2 # A leader - follower1: example # A first follower - follower2: example # A second follower +rougail: + leader: + - leader: val1 + follower1: example + follower2: example + - leader: val2 + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.html b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.html index cb3d2d306..2b84ee526 100644 --- a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.html +++ b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: val1            # A leader
-      follower1: example      # A first follower
-      follower2: example      # A second follower
-    - leader: val2            # A leader
-      follower1: example      # A first follower
-      follower2: example      # A second follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: val1
+      follower1: example
+      follower2: example
+    - leader: val2
+      follower1: example
+      follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.sh index 47d2f6f5a..541c0a8ca 100644 --- a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: val1 # A leader  - follower1: example # A first follower  - follower2: example # A second follower  - - leader: val2 # A leader  - follower1: example # A first follower  - follower2: example # A second follower  +rougail:  + leader:  + - leader: val1  + follower1: example  + follower2: example  + - leader: val2  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi.adoc b/tests/results/test_namespace_examples/40_6leadership_follower_multi.adoc index ef835ae53..ceb8447ed 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi.adoc +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example ---- == Example with all variables modifiable @@ -14,11 +14,11 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ---- diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_examples/40_6leadership_follower_multi.gitlab.md index bd48a37e7..ad246f542 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi.gitlab.md +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example ``` @@ -14,12 +14,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ``` diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi.html b/tests/results/test_namespace_examples/40_6leadership_follower_multi.html index 2b16990e3..05de7a6ce 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi.html +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: example         # The leader
-      follower1:              # The first follower
+
rougail:
+  leadership:
+    - leader: example
+      follower1:
         - example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: example         # The leader
-      follower1:              # The first follower
+
rougail:
+  leadership:
+    - leader: example
+      follower1:
         - example
-      follower2:              # The second follower
+      follower2:
         - value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi.sh b/tests/results/test_namespace_examples/40_6leadership_follower_multi.sh index e131ee4d5..a21ab097f 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +rougail:  + leadership:  + - leader: example  + follower1:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +rougail:  + leadership:  + - leader: example  + follower1:   - example  - follower2: # The second follower  + follower2:   - value  diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.adoc index c9b7bd3d8..3b77f7a97 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ---- diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md index dbcb80fa1..06ed2be0a 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: example # The leader - follower1: # The first follower +rougail: + leadership: + - leader: example + follower1: - example - follower2: # The second follower + follower2: - value ``` diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.html b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.html index a36b9aaa8..91d42063b 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.html +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: example         # The leader
-      follower1:              # The first follower
+
rougail:
+  leadership:
+    - leader: example
+      follower1:
         - example
-      follower2:              # The second follower
+      follower2:
         - value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.sh index 719dd9c64..8bba8e25c 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi_no_mandatory.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: example # The leader  - follower1: # The first follower  +rougail:  + leadership:  + - leader: example  + follower1:   - example  - follower2: # The second follower  + follower2:   - value  diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean.adoc b/tests/results/test_namespace_examples/40_8calculation_boolean.adoc index e5d60642a..0bddfa028 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_boolean.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - bool: false # A boolean variable - multi1: # A first multi variable +rougail: + bool: false + multi1: - false - multi2: # A second multi variable + multi2: - true - false ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_boolean.gitlab.md index a76e4dd54..8479a4313 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_boolean.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - bool: false # A boolean variable - multi1: # A first multi variable +rougail: + bool: false + multi1: - false - multi2: # A second multi variable + multi2: - true - false ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean.html b/tests/results/test_namespace_examples/40_8calculation_boolean.html index 713d3ac9a..dac783a13 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean.html +++ b/tests/results/test_namespace_examples/40_8calculation_boolean.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  bool: false                 # A boolean variable
-  multi1:                     # A first multi variable
+
rougail:
+  bool: false
+  multi1:
     - false
-  multi2:                     # A second multi variable
+  multi2:
     - true
     - false
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean.sh b/tests/results/test_namespace_examples/40_8calculation_boolean.sh index e3bb8dfc2..87a114200 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean.sh +++ b/tests/results/test_namespace_examples/40_8calculation_boolean.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - bool: false # A boolean variable  - multi1: # A first multi variable  +rougail:  + bool: false  + multi1:   - false  - multi2: # A second multi variable  + multi2:   - true   - false  diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.adoc b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.adoc index c60b873db..e1c76d01a 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - var1: yes # A first variable - var2: xxx # A second variable +rougail: + var1: yes + var2: xxx ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.gitlab.md index db839d77e..af4c34ff5 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - var1: yes # A first variable - var2: xxx # A second variable +rougail: + var1: yes + var2: xxx ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.html b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.html index af0da7171..f672c0946 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.html +++ b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1: yes                   # A first variable
-  var2: xxx                   # A second variable
\ No newline at end of file +
rougail:
+  var1: yes
+  var2: xxx
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.sh index 0120ad973..b13b19ca3 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: yes # A first variable  - var2: xxx # A second variable  +rougail:  + var1: yes  + var2: xxx  diff --git a/tests/results/test_namespace_examples/40_8calculation_integer.adoc b/tests/results/test_namespace_examples/40_8calculation_integer.adoc index fea5816a0..6107b2b0d 100644 --- a/tests/results/test_namespace_examples/40_8calculation_integer.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_integer.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - bool: false # A boolean variable - int1: 2 # First integer variable - int2: 3 # Second integer variable +rougail: + bool: false + int1: 2 + int2: 3 ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_integer.gitlab.md index 8d8e5363f..944d708c7 100644 --- a/tests/results/test_namespace_examples/40_8calculation_integer.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_integer.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - bool: false # A boolean variable - int1: 2 # First integer variable - int2: 3 # Second integer variable +rougail: + bool: false + int1: 2 + int2: 3 ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_integer.html b/tests/results/test_namespace_examples/40_8calculation_integer.html index c145a9047..b9e4493da 100644 --- a/tests/results/test_namespace_examples/40_8calculation_integer.html +++ b/tests/results/test_namespace_examples/40_8calculation_integer.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  bool: false                 # A boolean variable
-  int1: 2                     # First integer variable
-  int2: 3                     # Second integer variable
\ No newline at end of file +
rougail:
+  bool: false
+  int1: 2
+  int2: 3
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_integer.sh b/tests/results/test_namespace_examples/40_8calculation_integer.sh index c08b70d5a..103547335 100644 --- a/tests/results/test_namespace_examples/40_8calculation_integer.sh +++ b/tests/results/test_namespace_examples/40_8calculation_integer.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - bool: false # A boolean variable  - int1: 2 # First integer variable  - int2: 3 # Second integer variable  +rougail:  + bool: false  + int1: 2  + int2: 3  diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable.adoc b/tests/results/test_namespace_examples/40_8calculation_multi_variable.adoc index 088579b84..3359beaf7 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A first variable +rougail: + var: - no - yes - var2: no # A second variable - var3: yes # A third variable + var2: no + var3: yes ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable.gitlab.md index 9bb8f0feb..bd9026279 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - var: # A first variable +rougail: + var: - no - yes - var2: no # A second variable - var3: yes # A third variable + var2: no + var3: yes ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable.html b/tests/results/test_namespace_examples/40_8calculation_multi_variable.html index 473c8d0f1..8be42765e 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable.html +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A first variable
+
rougail:
+  var:
     - no
     - yes
-  var2: no                    # A second variable
-  var3: yes                   # A third variable
\ No newline at end of file + var2: no + var3: yes
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable.sh b/tests/results/test_namespace_examples/40_8calculation_multi_variable.sh index 952988df1..c2508ea92 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable.sh +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A first variable  +rougail:  + var:   - no   - yes  - var2: no # A second variable  - var3: yes # A third variable  + var2: no  + var3: yes  diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.adoc b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.adoc index 4bb2f5e67..e4a3f2556 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var: no # A variable - fam1: # A family - var: no # A calculated variable +rougail: + var: no + fam1: + var: no ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.gitlab.md index a4ccfcbb5..ff08d6f6f 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - var: no # A variable - fam1: # A family - var: no # A calculated variable +rougail: + var: no + fam1: + var: no ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.html b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.html index cd40a6b1b..909076fca 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.html +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: no                     # A variable
-  fam1:                       # A family
-    var: no                   # A calculated variable
\ No newline at end of file +
rougail:
+  var: no
+  fam1:
+    var: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.sh index d874212a8..c2fa99a3a 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: no # A variable  - fam1: # A family  - var: no # A calculated variable  +rougail:  + var: no  + fam1:  + var: no  diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.adoc index e85edd48d..45cdbfa50 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - fam1: # First family - var: no # A variable - fam2: # Second family - var: no # A variable +rougail: + fam1: + var: no + fam2: + var: no ---- diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.gitlab.md index 101aaa5a9..c3f16c581 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.gitlab.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - fam1: # First family - var: no # A variable - fam2: # Second family - var: no # A variable +rougail: + fam1: + var: no + fam2: + var: no ``` diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.html b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.html index e5da8d0fc..9dd89b31e 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.html +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  fam1:                       # First family
-    var: no                   # A variable
-  fam2:                       # Second family
-    var: no                   # A variable
\ No newline at end of file +
rougail:
+  fam1:
+    var: no
+  fam2:
+    var: no
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.sh index 74054f37f..7057e3767 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - fam1: # First family  - var: no # A variable  - fam2: # Second family  - var: no # A variable  +rougail:  + fam1:  + var: no  + fam2:  + var: no  diff --git a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.adoc index f9e66b26f..925be834d 100644 --- a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: value1 # A leader - follower: # A follower +rougail: + leadership: + - leader: value1 + follower: - value1 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value2 ---- diff --git a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md index d9c33d713..efb8dd4ba 100644 --- a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: value1 # A leader - follower: # A follower +rougail: + leadership: + - leader: value1 + follower: - value1 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value2 ``` diff --git a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.html b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.html index a9554d731..b291eed7c 100644 --- a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.html +++ b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: value1          # A leader
-      follower:               # A follower
+
rougail:
+  leadership:
+    - leader: value1
+      follower:
         - value1
-    - leader: value2          # A leader
-      follower:               # A follower
+    - leader: value2
+      follower:
         - value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.sh index 54ec041da..6aaaa4be6 100644 --- a/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_namespace_examples/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: value1 # A leader  - follower: # A follower  +rougail:  + leadership:  + - leader: value1  + follower:   - value1  - - leader: value2 # A leader  - follower: # A follower  + - leader: value2  + follower:   - value2  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.adoc index f2e245e67..b4393de2b 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - val11 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.gitlab.md index 2e3d12e9a..0600f6305 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - val11 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.html index c2db13a2e..7eef8eda4 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - val11
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.sh index c52ecc5a4..181ad12f6 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate:   - val11  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.adoc index f2e245e67..b4393de2b 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - val11 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.gitlab.md index 2e3d12e9a..0600f6305 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - val11 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.html index c2db13a2e..7eef8eda4 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - val11
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.sh index c52ecc5a4..181ad12f6 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate:   - val11  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc index 100a28204..c82252cf1 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # leader +rougail: + leader: - leader: a follower: example - leader: b diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md index fc9d1b34f..5144a3f66 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - leader: # leader +rougail: + leader: - leader: a follower: example - leader: b diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.html index f5e450690..ddf743c9f 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # leader
+
rougail:
+  leader:
     - leader: a
       follower: example
     - leader: b
diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
index 3a3c93e44..b00e1af52 100644
--- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
+++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-no-mandatory.sh
@@ -1,11 +1,8 @@
-
-
 Example with all variables modifiable
 
-
 ---                                                                             
-rougail:                      # Rougail                                         
-  leader:                     # leader                                          
+rougail:                                                                        
+  leader:                                                                       
     - leader: a                                                                 
       follower: example                                                         
     - leader: b                                                                 
diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.adoc
index d1075415b..4cb07cc1f 100644
--- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.adoc
+++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.adoc
@@ -3,15 +3,15 @@
 [,yaml]
 ----
 ---
-rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - val11
     - val11
 ----
diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.gitlab.md
index 686aad1e2..cff062562 100644
--- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.gitlab.md
@@ -2,15 +2,15 @@
 
 ```yaml
 ---
-rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - val11
     - val11
 ```
diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.html
index 1e196c85d..9c15b5c15 100644
--- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.html
+++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.html
@@ -1,13 +1,13 @@
 

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - val11
     - val11
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.sh index aaca86951..21046de67 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate:   - val11   - val11  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.adoc index 548ec4c87..a48f6ea55 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: value1 # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: value1 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.gitlab.md index d914e197d..184bf6173 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: value1 # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: value1 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.html index be7f50a44..567cbff3d 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate: value1           # A calculated variable
\ No newline at end of file +
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate: value1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.sh index 33dca8ce2..e2e30f096 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: value1 # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate: value1  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.adoc index f1341d19f..2dbf59300 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: value2 # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: value2 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.gitlab.md index f7cff0225..a14dcfe63 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: value2 # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: value2 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.html index 949447b4e..6a3e5aa91 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate: value2           # A calculated variable
\ No newline at end of file +
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate: value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.sh index dd507a1ae..b3ca142d3 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: value2 # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate: value2  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.adoc index 09da6e7f8..879d5c719 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - value1 - value2 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.gitlab.md index 398a98ecd..8b547774a 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - calculate: # A calculated variable +rougail: + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 + calculate: - value1 - value2 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.html b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.html index eb352c76c..cc360e7a2 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-  calculate:                  # A calculated variable
+
rougail:
+  leader:
+    - leader: value1
+      follower1: val11
+      follower2: val21
+    - leader: value2
+      follower1: val11
+      follower2: val21
+  calculate:
     - value1
     - value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.sh index 175af80c3..5c1ffff11 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - calculate: # A calculated variable  +rougail:  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  + calculate:   - value1   - value2  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.adoc index 5370d048f..f9c48ebe8 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - calculate: # A calculated variable +rougail: + calculate: - value1 - value2 - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.gitlab.md index d0bf10cfe..0eb2a2564 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - calculate: # A calculated variable +rougail: + calculate: - value1 - value2 - leader: # A leadership - - leader: value1 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower - - leader: value2 # A leader - follower1: val11 # A follower - follower2: val21 # An other follower + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.html b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.html index e7e7e7c61..1edc0c34d 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  calculate:                  # A calculated variable
+
rougail:
+  calculate:
     - value1
     - value2
-  leader:                     # A leadership
-    - leader: value1          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
-    - leader: value2          # A leader
-      follower1: val11        # A follower
-      follower2: val21        # An other follower
\ No newline at end of file + leader: + - leader: value1 + follower1: val11 + follower2: val21 + - leader: value2 + follower1: val11 + follower2: val21
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.sh index 4383b13bf..6c19a4ee3 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - calculate: # A calculated variable  +rougail:  + calculate:   - value1   - value2  - leader: # A leadership  - - leader: value1 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  - - leader: value2 # A leader  - follower1: val11 # A follower  - follower2: val21 # An other follower  + leader:  + - leader: value1  + follower1: val11  + follower2: val21  + - leader: value2  + follower1: val11  + follower2: val21  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.adoc index d7c233a37..1b9a16679 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower - leadership_2: # A second leadership - - leader: # A leader - follower: val # A follower - - leader: # A leader - follower: val # A follower +rougail: + leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example + leadership_2: + - leader: + follower: val + - leader: + follower: val ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md index a0c22c899..a7a8f1c8b 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower - leadership_2: # A second leadership - - leader: # A leader - follower: val # A follower - - leader: # A leader - follower: val # A follower +rougail: + leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example + leadership_2: + - leader: + follower: val + - leader: + follower: val ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.html b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.html index b81e2d32e..0e01dd04a 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership_1:               # A leadership
-    - leader: value1          # A leader
-      follower: example       # A follower
-    - leader: value2          # A leader
-      follower: example       # A follower
-  leadership_2:               # A second leadership
-    - leader:                 # A leader
-      follower: val           # A follower
-    - leader:                 # A leader
-      follower: val           # A follower
\ No newline at end of file +
rougail:
+  leadership_1:
+    - leader: value1
+      follower: example
+    - leader: value2
+      follower: example
+  leadership_2:
+    - leader:
+      follower: val
+    - leader:
+      follower: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.sh index 411191179..3b0b86b6c 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership_1: # A leadership  - - leader: value1 # A leader  - follower: example # A follower  - - leader: value2 # A leader  - follower: example # A follower  - leadership_2: # A second leadership  - - leader: # A leader  - follower: val # A follower  - - leader: # A leader  - follower: val # A follower  +rougail:  + leadership_1:  + - leader: value1  + follower: example  + - leader: value2  + follower: example  + leadership_2:  + - leader:  + follower: val  + - leader:  + follower: val  diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 2b2266b1c..10065c1c9 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -rougail: # Rougail - leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower - leadership_2: # A second leadership - - leader: value1 # A leader - follower: # A follower +rougail: + leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example + leadership_2: + - leader: value1 + follower: - value1 - value2 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value1 - value2 ---- diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md index ee56b0217..2ae417102 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md @@ -2,19 +2,19 @@ ```yaml --- -rougail: # Rougail - leadership_1: # A leadership - - leader: value1 # A leader - follower: example # A follower - - leader: value2 # A leader - follower: example # A follower - leadership_2: # A second leadership - - leader: value1 # A leader - follower: # A follower +rougail: + leadership_1: + - leader: value1 + follower: example + - leader: value2 + follower: example + leadership_2: + - leader: value1 + follower: - value1 - value2 - - leader: value2 # A leader - follower: # A follower + - leader: value2 + follower: - value1 - value2 ``` diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.html b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.html index efb4d9db0..7792c894a 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.html +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.html @@ -1,17 +1,17 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership_1:               # A leadership
-    - leader: value1          # A leader
-      follower: example       # A follower
-    - leader: value2          # A leader
-      follower: example       # A follower
-  leadership_2:               # A second leadership
-    - leader: value1          # A leader
-      follower:               # A follower
+
rougail:
+  leadership_1:
+    - leader: value1
+      follower: example
+    - leader: value2
+      follower: example
+  leadership_2:
+    - leader: value1
+      follower:
         - value1
         - value2
-    - leader: value2          # A leader
-      follower:               # A follower
+    - leader: value2
+      follower:
         - value1
         - value2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh index 13e8b188d..d97771f67 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,22 +1,19 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership_1: # A leadership  - - leader: value1 # A leader  - follower: example # A follower  - - leader: value2 # A leader  - follower: example # A follower  - leadership_2: # A second leadership  - - leader: value1 # A leader  - follower: # A follower  +rougail:  + leadership_1:  + - leader: value1  + follower: example  + - leader: value2  + follower: example  + leadership_2:  + - leader: value1  + follower:   - value1   - value2  - - leader: value2 # A leader  - follower: # A follower  + - leader: value2  + follower:   - value1   - value2  diff --git a/tests/results/test_namespace_examples/41_0choice_leader.adoc b/tests/results/test_namespace_examples/41_0choice_leader.adoc index 15e320344..abfe6503a 100644 --- a/tests/results/test_namespace_examples/41_0choice_leader.adoc +++ b/tests/results/test_namespace_examples/41_0choice_leader.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # The leadership - - leader: example # The leader - follower1: a_choice # A follower +rougail: + leader: + - leader: example + follower1: a_choice ---- diff --git a/tests/results/test_namespace_examples/41_0choice_leader.gitlab.md b/tests/results/test_namespace_examples/41_0choice_leader.gitlab.md index c12137ad1..a9905035b 100644 --- a/tests/results/test_namespace_examples/41_0choice_leader.gitlab.md +++ b/tests/results/test_namespace_examples/41_0choice_leader.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - leader: # The leadership - - leader: example # The leader - follower1: a_choice # A follower +rougail: + leader: + - leader: example + follower1: a_choice ``` diff --git a/tests/results/test_namespace_examples/41_0choice_leader.html b/tests/results/test_namespace_examples/41_0choice_leader.html index 93fb0bc15..02e1b4e9c 100644 --- a/tests/results/test_namespace_examples/41_0choice_leader.html +++ b/tests/results/test_namespace_examples/41_0choice_leader.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # The leadership
-    - leader: example         # The leader
-      follower1: a_choice     # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: a_choice
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/41_0choice_leader.sh b/tests/results/test_namespace_examples/41_0choice_leader.sh index 6fe90013c..3caf2eb38 100644 --- a/tests/results/test_namespace_examples/41_0choice_leader.sh +++ b/tests/results/test_namespace_examples/41_0choice_leader.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # The leadership  - - leader: example # The leader  - follower1: a_choice # A follower  +rougail:  + leader:  + - leader: example  + follower1: a_choice  diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.adoc b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.adoc index eec2a3411..ab962ae80 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.adoc +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - condition: true # A condition - leader: # A leadership - - leader: a # Aleader - follower: example # A follower +rougail: + condition: true + leader: + - leader: a + follower: example ---- diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.gitlab.md index 90c8d18df..f60541e2f 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.gitlab.md +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - condition: true # A condition - leader: # A leadership - - leader: a # Aleader - follower: example # A follower +rougail: + condition: true + leader: + - leader: a + follower: example ``` diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.html b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.html index c128152ad..a63b42004 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.html +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: true             # A condition
-  leader:                     # A leadership
-    - leader: a               # Aleader
-      follower: example       # A follower
\ No newline at end of file +
rougail:
+  condition: true
+  leader:
+    - leader: a
+      follower: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.sh index e45da8339..e73163d81 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: true # A condition  - leader: # A leadership  - - leader: a # Aleader  - follower: example # A follower  +rougail:  + condition: true  + leader:  + - leader: a  + follower: example  diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.adoc b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.adoc index 218970147..1b6fe9577 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - leadership: # A leadership - - leader: a # Aleader - follower: value # A follower - - leader: b # Aleader - follower: value # A follower +rougail: + leadership: + - leader: a + follower: value + - leader: b + follower: value ---- diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.gitlab.md index cc1c69424..ffa40c1a5 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.gitlab.md +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leadership: # A leadership - - leader: a # Aleader - follower: value # A follower - - leader: b # Aleader - follower: value # A follower +rougail: + leadership: + - leader: a + follower: value + - leader: b + follower: value ``` diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.html b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.html index 8aaf2663c..89eb10e3e 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.html +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leadership:                 # A leadership
-    - leader: a               # Aleader
-      follower: value         # A follower
-    - leader: b               # Aleader
-      follower: value         # A follower
\ No newline at end of file +
rougail:
+  leadership:
+    - leader: a
+      follower: value
+    - leader: b
+      follower: value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.sh index 982a6bbb3..3cef4cdc0 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower_index.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leadership: # A leadership  - - leader: a # Aleader  - follower: value # A follower  - - leader: b # Aleader  - follower: value # A follower  +rougail:  + leadership:  + - leader: a  + follower: value  + - leader: b  + follower: value  diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory.adoc b/tests/results/test_namespace_examples/44_4leadership_mandatory.adoc index 0a0bc1c27..ef704170f 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory.adoc +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory.adoc @@ -3,17 +3,17 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader +rougail: + leader: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower +rougail: + leader: + - leader: example + follower1: example ---- diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_examples/44_4leadership_mandatory.gitlab.md index 5efaf8802..f2e77e6b8 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory.gitlab.md +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader +rougail: + leader: + - leader: example ``` @@ -12,10 +12,10 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower +rougail: + leader: + - leader: example + follower1: example ``` diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory.html b/tests/results/test_namespace_examples/44_4leadership_mandatory.html index a5087eeb1..6ae83c380 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory.html +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory.html @@ -1,10 +1,10 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader

Example with all variables modifiable

+
rougail:
+  leader:
+    - leader: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory.sh b/tests/results/test_namespace_examples/44_4leadership_mandatory.sh index 9a977b237..a756c9dcd 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory.sh +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory.sh @@ -1,21 +1,15 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - - +rougail:  + leader:  + - leader: example  Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower  +rougail:  + leader:  + - leader: example  + follower1: example  diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.adoc b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.adoc index 3d6968eee..ddfa2121a 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.gitlab.md index 1dbd44081..d45c1a71d 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.gitlab.md +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.html b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.html index f6a2f5129..34d72fe81 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.html +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.html @@ -1,6 +1,6 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower: example       # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.sh index 989ef5fd3..d820bf583 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.sh @@ -1,11 +1,8 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +rougail:  + leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.adoc index e2016bef6..c58727048 100644 --- a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - condition: no # A condition - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + condition: no + leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.gitlab.md index 2d6874bf1..30354adc1 100644 --- a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - condition: no # A condition - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + condition: no + leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.html b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.html index 337548d3e..431073edc 100644 --- a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.html +++ b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: no               # A condition
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower: example       # A follower
\ No newline at end of file +
rougail:
+  condition: no
+  leader:
+    - leader: example
+      follower: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.sh index 294450044..74f5c9109 100644 --- a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - condition: no # A condition  - leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +rougail:  + condition: no  + leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.adoc index e037dbe70..205ea1528 100644 --- a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + leader: + - leader: example + follower: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - condition: yes # A condition - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + condition: yes + leader: + - leader: example + follower: example ---- diff --git a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.gitlab.md index 3ab8a1f3b..705a43cf8 100644 --- a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.gitlab.md +++ b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + leader: + - leader: example + follower: example ``` @@ -13,11 +13,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - condition: yes # A condition - leader: # A leadership - - leader: example # A leader - follower: example # A follower +rougail: + condition: yes + leader: + - leader: example + follower: example ``` diff --git a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.html b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.html index 5e5d2d262..883543e86 100644 --- a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.html +++ b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower: example       # A follower

Example with all variables modifiable

+
rougail:
+  leader:
+    - leader: example
+      follower: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  condition: yes              # A condition
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower: example       # A follower
\ No newline at end of file +
rougail:
+  condition: yes
+  leader:
+    - leader: example
+      follower: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.sh index 250b228be..2cb1868af 100644 --- a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  - - +rougail:  + leader:  + - leader: example  + follower: example  Example with all variables modifiable - ---  -rougail: # Rougail  - condition: yes # A condition  - leader: # A leadership  - - leader: example # A leader  - follower: example # A follower  +rougail:  + condition: yes  + leader:  + - leader: example  + follower: example  diff --git a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.adoc index 001abd752..8883887b3 100644 --- a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.adoc +++ b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # Leader - - leader: a # A leader - follower: a # A follower - - leader: b # A leader - follower: b # A follower +rougail: + leader: + - leader: a + follower: a + - leader: b + follower: b ---- diff --git a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.gitlab.md index 876a89bf9..2ccb04bf7 100644 --- a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.gitlab.md +++ b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - leader: # Leader - - leader: a # A leader - follower: a # A follower - - leader: b # A leader - follower: b # A follower +rougail: + leader: + - leader: a + follower: a + - leader: b + follower: b ``` diff --git a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.html b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.html index aba5d5844..f9ad88521 100644 --- a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.html +++ b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.html @@ -1,8 +1,8 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # Leader
-    - leader: a               # A leader
-      follower: a             # A follower
-    - leader: b               # A leader
-      follower: b             # A follower
\ No newline at end of file +
rougail:
+  leader:
+    - leader: a
+      follower: a
+    - leader: b
+      follower: b
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.sh index ea4586c71..f54802a2c 100644 --- a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.sh +++ b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.sh @@ -1,13 +1,10 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # Leader  - - leader: a # A leader  - follower: a # A follower  - - leader: b # A leader  - follower: b # A follower  +rougail:  + leader:  + - leader: a  + follower: a  + - leader: b  + follower: b  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic.adoc b/tests/results/test_namespace_examples/60_0family_dynamic.adoc index c8cd526f1..8b999cbde 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic.gitlab.md index 473168b94..6f2e5b72c 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic.html b/tests/results/test_namespace_examples/60_0family_dynamic.html index 99dec38bf..6dc05d24a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic.sh b/tests/results/test_namespace_examples/60_0family_dynamic.sh index 56f2eef4f..6ead9e284 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.adoc index 62b22586a..8eab9fd5e 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # Dynamic variable - dynval2: # dyn{{ identifier }} - vardyn: example # Dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.gitlab.md index 5588b9ee0..a9e2ada07 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # Dynamic variable - dynval2: # dyn{{ identifier }} - vardyn: example # Dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.html index 131160a8b..1d9d756cb 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # Dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # Dynamic variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.sh index 021f36af9..c66470af2 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - vardyn: example # Dynamic variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # Dynamic variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.adoc index 62b22586a..8eab9fd5e 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # Dynamic variable - dynval2: # dyn{{ identifier }} - vardyn: example # Dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.gitlab.md index 5588b9ee0..a9e2ada07 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # Dynamic variable - dynval2: # dyn{{ identifier }} - vardyn: example # Dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.html index 131160a8b..1d9d756cb 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # Dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # Dynamic variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.sh index 021f36af9..c66470af2 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - vardyn: example # Dynamic variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # Dynamic variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.adoc index 4898aac2a..8db9d28ed 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.gitlab.md index 729bac764..38d9568b6 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.html index 527eaee62..c231829cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.sh index cd1b76869..f920ba3cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - - +rougail:  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # A dyn variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.adoc index 4898aac2a..8db9d28ed 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.gitlab.md index 729bac764..38d9568b6 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # dyn{{ identifier }} - vardyn: example # A dyn variable - dynval2: # dyn{{ identifier }} - vardyn: example # A dyn variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.html index 527eaee62..c231829cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
-  dynval2:                    # dyn{{ identifier }}
-    vardyn: example           # A dyn variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.sh index cd1b76869..f920ba3cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - - +rougail:  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - vardyn: example # A dyn variable  - dynval2: # dyn{{ identifier }}  - vardyn: example # A dyn variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.adoc index 6ad0cdd39..8db9d28ed 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.gitlab.md index d9cc0d604..38d9568b6 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.html index 56fffcbfd..c231829cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.sh index 11a17b849..f920ba3cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +rougail:  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.adoc index 6ad0cdd39..8db9d28ed 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.gitlab.md index d9cc0d604..38d9568b6 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.html index 56fffcbfd..c231829cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable
\ No newline at end of file + dynval1: + vardyn: example + dynval2: + vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.sh index 11a17b849..f920ba3cc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +rougail:  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_empty.adoc index c987f02f4..8fa05454f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_empty.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - dynexample: # A dynamic family - var: example # A dynamic variable +rougail: + dynexample: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example - dynexample: # A dynamic family - var: example # A dynamic variable + dynexample: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_empty.gitlab.md index c33fc5329..f4407cee1 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_empty.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - dynexample: # A dynamic family - var: example # A dynamic variable +rougail: + dynexample: + var: example ``` @@ -12,11 +12,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example - dynexample: # A dynamic family - var: example # A dynamic variable + dynexample: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_empty.html index 0f1e3e402..5349b46db 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_empty.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynexample:                 # A dynamic family
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynexample:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - example
-  dynexample:                 # A dynamic family
-    var: example              # A dynamic variable
\ No newline at end of file + dynexample: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_empty.sh index 9cdc64b22..c3c4684b9 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_empty.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynexample: # A dynamic family  - var: example # A dynamic variable  - - +rougail:  + dynexample:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - example  - dynexample: # A dynamic family  - var: example # A dynamic variable  + dynexample:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.adoc index c4fba91f6..a77ab115a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.adoc @@ -3,14 +3,14 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val.1 - val.2 - dynval_1: # A dynamic family - var1: val.1 # A dynamic variable - var2: val.1 # A dynamic variable - dynval_2: # A dynamic family - var1: val.2 # A dynamic variable - var2: val.2 # A dynamic variable + dynval_1: + var1: val.1 + var2: val.1 + dynval_2: + var1: val.2 + var2: val.2 ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.gitlab.md index b6834a604..ccc08b336 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.gitlab.md @@ -2,16 +2,16 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val.1 - val.2 - dynval_1: # A dynamic family - var1: val.1 # A dynamic variable - var2: val.1 # A dynamic variable - dynval_2: # A dynamic family - var1: val.2 # A dynamic variable - var2: val.2 # A dynamic variable + dynval_1: + var1: val.1 + var2: val.1 + dynval_2: + var1: val.2 + var2: val.2 ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.html b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.html index 3cca403a4..490bb94bd 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.html @@ -1,12 +1,12 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val.1
     - val.2
-  dynval_1:                   # A dynamic family
-    var1: val.1               # A dynamic variable
-    var2: val.1               # A dynamic variable
-  dynval_2:                   # A dynamic family
-    var1: val.2               # A dynamic variable
-    var2: val.2               # A dynamic variable
\ No newline at end of file + dynval_1: + var1: val.1 + var2: val.1 + dynval_2: + var1: val.2 + var2: val.2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.sh index d64a7cef2..9240c5aef 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.sh @@ -1,17 +1,14 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val.1   - val.2  - dynval_1: # A dynamic family  - var1: val.1 # A dynamic variable  - var2: val.1 # A dynamic variable  - dynval_2: # A dynamic family  - var1: val.2 # A dynamic variable  - var2: val.2 # A dynamic variable  + dynval_1:  + var1: val.1  + var2: val.1  + dynval_2:  + var1: val.2  + var2: val.2  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.adoc index 89f44e283..b5b2f494c 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - 1 - 2 - dyn1: # A dynamic family - var: val # A variable inside dynamic family - dyn2: # A dynamic family - var: val # A variable inside dynamic family - var2: val # A variable + dyn1: + var: val + dyn2: + var: val + var2: val ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.gitlab.md index 8de5e3daa..4200548b3 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - 1 - 2 - dyn1: # A dynamic family - var: val # A variable inside dynamic family - dyn2: # A dynamic family - var: val # A variable inside dynamic family - var2: val # A variable + dyn1: + var: val + dyn2: + var: val + var2: val ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.html index 40afbc8cb..faa447a03 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - 1
     - 2
-  dyn1:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
-  dyn2:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
-  var2: val                   # A variable
\ No newline at end of file + dyn1: + var: val + dyn2: + var: val + var2: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.sh index 8eb66bca9..a8fbf6462 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_integer_empty.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - 1   - 2  - dyn1: # A dynamic family  - var: val # A variable inside dynamic family  - dyn2: # A dynamic family  - var: val # A variable inside dynamic family  - var2: val # A variable  + dyn1:  + var: val  + dyn2:  + var: val  + var2: val  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.adoc index 89f44e283..b5b2f494c 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - 1 - 2 - dyn1: # A dynamic family - var: val # A variable inside dynamic family - dyn2: # A dynamic family - var: val # A variable inside dynamic family - var2: val # A variable + dyn1: + var: val + dyn2: + var: val + var2: val ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.gitlab.md index 8de5e3daa..4200548b3 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - 1 - 2 - dyn1: # A dynamic family - var: val # A variable inside dynamic family - dyn2: # A dynamic family - var: val # A variable inside dynamic family - var2: val # A variable + dyn1: + var: val + dyn2: + var: val + var2: val ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.html b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.html index 40afbc8cb..faa447a03 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - 1
     - 2
-  dyn1:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
-  dyn2:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
-  var2: val                   # A variable
\ No newline at end of file + dyn1: + var: val + dyn2: + var: val + var2: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.sh index 8eb66bca9..a8fbf6462 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - 1   - 2  - dyn1: # A dynamic family  - var: val # A variable inside dynamic family  - dyn2: # A dynamic family  - var: val # A variable inside dynamic family  - var2: val # A variable  + dyn1:  + var: val  + dyn2:  + var: val  + var2: val  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.adoc index 9cc87ffcd..8b999cbde 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family +rougail: + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ---- == Example with all variables modifiable @@ -14,12 +14,12 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.gitlab.md index 497150704..6f2e5b72c 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family +rougail: + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ``` @@ -14,13 +14,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.html b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.html index add61ba8c..6dc05d24a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
+
rougail:
+  dynval1:
     var: example
-  dynval2:                    # A dynamic family
+  dynval2:
     var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
+  dynval1:
     var: example
-  dynval2:                    # A dynamic family
+  dynval2:
     var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.sh index 49850e9d7..6ead9e284 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  +rougail:  + dynval1:   var: example  - dynval2: # A dynamic family  + dynval2:   var: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  + dynval1:   var: example  - dynval2: # A dynamic family  + dynval2:   var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.adoc index 9cc87ffcd..8b999cbde 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.adoc @@ -3,10 +3,10 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family +rougail: + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ---- == Example with all variables modifiable @@ -14,12 +14,12 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.gitlab.md index 497150704..6f2e5b72c 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.gitlab.md @@ -2,10 +2,10 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family +rougail: + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ``` @@ -14,13 +14,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family + dynval1: var: example - dynval2: # A dynamic family + dynval2: var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.html index add61ba8c..6dc05d24a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
+
rougail:
+  dynval1:
     var: example
-  dynval2:                    # A dynamic family
+  dynval2:
     var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
+  dynval1:
     var: example
-  dynval2:                    # A dynamic family
+  dynval2:
     var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.sh index 49850e9d7..6ead9e284 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  +rougail:  + dynval1:   var: example  - dynval2: # A dynamic family  + dynval2:   var: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  + dynval1:   var: example  - dynval2: # A dynamic family  + dynval2:   var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.adoc index 85c7b90de..e2f600c34 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.gitlab.md index d6a87dffb..ce1a9bff2 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.html b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.html index 77b501452..58a54cbe9 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable
\ No newline at end of file +
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.sh index 1ae51e5f4..555f7abfb 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_source_hidden.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_static.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_static.adoc index baef79f82..e2f600c34 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_static.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_static.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable inside a dynamic family - dynval2: # A dynamic family - var: example # A variable inside a dynamic family +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable inside a dynamic family - dynval2: # A dynamic family - var: example # A variable inside a dynamic family +rougail: + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_static.gitlab.md index 62582a53d..ce1a9bff2 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_static.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_static.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable inside a dynamic family - dynval2: # A dynamic family - var: example # A variable inside a dynamic family +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable inside a dynamic family - dynval2: # A dynamic family - var: example # A variable inside a dynamic family +rougail: + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_static.html b/tests/results/test_namespace_examples/60_0family_dynamic_static.html index 7754060fd..58a54cbe9 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_static.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_static.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A variable inside a dynamic family
-  dynval2:                    # A dynamic family
-    var: example              # A variable inside a dynamic family

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A variable inside a dynamic family
-  dynval2:                    # A dynamic family
-    var: example              # A variable inside a dynamic family
\ No newline at end of file +
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_static.sh b/tests/results/test_namespace_examples/60_0family_dynamic_static.sh index f10e32bb1..555f7abfb 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_static.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A variable inside a dynamic family  - dynval2: # A dynamic family  - var: example # A variable inside a dynamic family  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A variable inside a dynamic family  - dynval2: # A dynamic family  - var: example # A variable inside a dynamic family  +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_test.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_test.adoc index ce3efa08b..ded7eebc2 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_test.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_test.adoc @@ -3,26 +3,26 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_test.gitlab.md index f9bdcf7f7..4d227df3f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_test.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_test.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ``` @@ -17,14 +17,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_test.html b/tests/results/test_namespace_examples/60_0family_dynamic_test.html index e28b2b1d1..78eaf4c09 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_test.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_test.html @@ -1,19 +1,19 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable

Example with all variables modifiable

+ dynval1: + var: example + dynval2: + var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_test.sh b/tests/results/test_namespace_examples/60_0family_dynamic_test.sh index 7f6718d3a..979b4993f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_test.sh @@ -1,30 +1,24 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  - - + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.adoc index c1350db9e..870943d9f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.adoc @@ -3,23 +3,23 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - Val1 - VAL2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.gitlab.md index 2a7cdb4ba..5537c2aae 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,14 +14,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - Val1 - VAL2 - dynval1: # A dynamic family - var: example # A dynamic variable - dynval2: # A dynamic family - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.html b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.html index 5afcf96e3..bf81ca335 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.html @@ -1,16 +1,16 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - Val1
     - VAL2
-  dynval1:                    # A dynamic family
-    var: example              # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: example              # A dynamic variable
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.sh index 390b2d52e..6dd09c6ec 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_upper_char.sh @@ -1,27 +1,21 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - Val1   - VAL2  - dynval1: # A dynamic family  - var: example # A dynamic variable  - dynval2: # A dynamic family  - var: example # A dynamic variable  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.adoc index 08f569370..ac3cfccff 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example ---- == Example with all variables modifiable @@ -12,9 +12,9 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example - dynexample: # A dynamic family - var: val # A variable inside dynamic family + dynexample: + var: val ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.gitlab.md index e6123f625..3923ded5f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example ``` @@ -12,11 +12,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - example - dynexample: # A dynamic family - var: val # A variable inside dynamic family + dynexample: + var: val ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.html index f18606ae2..7d8400663 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.html @@ -1,11 +1,11 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - example
-  dynexample:                 # A dynamic family
-    var: val                  # A variable inside dynamic family
\ No newline at end of file + dynexample: + var: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.sh index 88e60a502..9d43b7a50 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.sh @@ -1,22 +1,16 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - example  - dynexample: # A dynamic family  - var: val # A variable inside dynamic family  + dynexample:  + var: val  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.adoc index 9d0b9a453..6422571ec 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - dyna: # A dynamic family - var: val # A variable inside dynamic family - dynb: # A dynamic family - var: val # A variable inside dynamic family +rougail: + dyna: + var: val + dynb: + var: val ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.gitlab.md index 7215f4210..0b31eb74a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dyna: # A dynamic family - var: val # A variable inside dynamic family - dynb: # A dynamic family - var: val # A variable inside dynamic family +rougail: + dyna: + var: val + dynb: + var: val ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.html b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.html index 7ec562937..b1926880f 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  dyna:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
-  dynb:                       # A dynamic family
-    var: val                  # A variable inside dynamic family
\ No newline at end of file +
rougail:
+  dyna:
+    var: val
+  dynb:
+    var: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.sh index e731a45d2..7641d6e54 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_optional.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - dyna: # A dynamic family  - var: val # A variable inside dynamic family  - dynb: # A dynamic family  - var: val # A variable inside dynamic family  +rougail:  + dyna:  + var: val  + dynb:  + var: val  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.adoc index c8b168ffb..57903d7e6 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} - dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} + dynval1: + var: a value + dynval2: + var: a value ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.gitlab.md index 0484f5d4d..946a95569 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} - dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} + dynval1: + var: a value + dynval2: + var: a value ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.html b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.html index 02bf3dfb2..3813a9133 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: a value              # A dynamic variable with suffix {{ identifier }}
-  dynval2:                    # A dynamic family
-    var: a value              # A dynamic variable with suffix {{ identifier }}
\ No newline at end of file + dynval1: + var: a value + dynval2: + var: a value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.sh index f91c52bd1..521b12789 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  - dynval2: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  + dynval1:  + var: a value  + dynval2:  + var: a value  diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.adoc index 8de6f8f09..ce2b04467 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 ---- @@ -13,12 +13,12 @@ rougail: # Rougail [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} - dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} + dynval1: + var: a value + dynval2: + var: a value ---- diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md index b641739af..405c1dbfc 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 ``` @@ -13,14 +13,14 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} - dynval2: # A dynamic family - var: a value # A dynamic variable with suffix {{ identifier }} + dynval1: + var: a value + dynval2: + var: a value ``` diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.html b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.html index ff489cb00..02791803a 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.html +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: a value              # A dynamic variable with suffix {{ identifier }}
-  dynval2:                    # A dynamic family
-    var: a value              # A dynamic variable with suffix {{ identifier }}
\ No newline at end of file + dynval1: + var: a value + dynval2: + var: a value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.sh index 229e328cf..4bce40a54 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  - dynval2: # A dynamic family  - var: a value # A dynamic variable with suffix {{ identifier }}  + dynval1:  + var: a value  + dynval2:  + var: a value  diff --git a/tests/results/test_namespace_examples/60_0family_mode.adoc b/tests/results/test_namespace_examples/60_0family_mode.adoc index 88d459740..d03cfe0b0 100644 --- a/tests/results/test_namespace_examples/60_0family_mode.adoc +++ b/tests/results/test_namespace_examples/60_0family_mode.adoc @@ -3,7 +3,7 @@ [,yaml] ---- --- -rougail: # Rougail - family: # A family - var: non # A variable +rougail: + family: + var: non ---- diff --git a/tests/results/test_namespace_examples/60_0family_mode.gitlab.md b/tests/results/test_namespace_examples/60_0family_mode.gitlab.md index 63650dfd0..7975526d3 100644 --- a/tests/results/test_namespace_examples/60_0family_mode.gitlab.md +++ b/tests/results/test_namespace_examples/60_0family_mode.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - family: # A family - var: non # A variable +rougail: + family: + var: non ``` diff --git a/tests/results/test_namespace_examples/60_0family_mode.html b/tests/results/test_namespace_examples/60_0family_mode.html index 97df42643..8cf56a943 100644 --- a/tests/results/test_namespace_examples/60_0family_mode.html +++ b/tests/results/test_namespace_examples/60_0family_mode.html @@ -1,5 +1,5 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  family:                     # A family
-    var: non                  # A variable
\ No newline at end of file +
rougail:
+  family:
+    var: non
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_0family_mode.sh b/tests/results/test_namespace_examples/60_0family_mode.sh index 6fd974cae..1ebd9a169 100644 --- a/tests/results/test_namespace_examples/60_0family_mode.sh +++ b/tests/results/test_namespace_examples/60_0family_mode.sh @@ -1,10 +1,7 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - family: # A family  - var: non # A variable  +rougail:  + family:  + var: non  diff --git a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.adoc b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.adoc index bd554434f..8b1fb3d3a 100644 --- a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dyn1: # A dynamic family - var: val # A dynamic variable - dyn2: # A dynamic family - var: val # A dynamic variable + dyn1: + var: val + dyn2: + var: val ---- diff --git a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.gitlab.md index fc8cc0e90..93ce6ea90 100644 --- a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.gitlab.md +++ b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dyn1: # A dynamic family - var: val # A dynamic variable - dyn2: # A dynamic family - var: val # A dynamic variable + dyn1: + var: val + dyn2: + var: val ``` diff --git a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.html b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.html index b97c84a38..dffc66f55 100644 --- a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.html +++ b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dyn1:                       # A dynamic family
-    var: val                  # A dynamic variable
-  dyn2:                       # A dynamic family
-    var: val                  # A dynamic variable
\ No newline at end of file + dyn1: + var: val + dyn2: + var: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.sh index f46b567b8..ab29dd764 100644 --- a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.sh +++ b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dyn1: # A dynamic family  - var: val # A dynamic variable  - dyn2: # A dynamic family  - var: val # A dynamic variable  + dyn1:  + var: val  + dyn2:  + var: val  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.adoc index 8a1c8f33a..9fe00bd3e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -3,28 +3,28 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable +rougail: + dynval1: + family: + var: example + dynval2: + family: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable - var2: example # A second variable + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md index 9fc5900a9..5644df7a5 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable +rougail: + dynval1: + family: + var: example + dynval2: + family: + var: example ``` @@ -16,17 +16,17 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable - var2: example # A second variable + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.html b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.html index 7142d4119..2e23f1006 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.html @@ -1,21 +1,21 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  dynval2:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    family:
+      var: example
+  dynval2:
+    family:
+      var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  dynval2:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  var2: example               # A second variable
\ No newline at end of file + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.sh index e3c72f4a7..7b8c9b4e5 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,32 +1,26 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  - dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - - +rougail:  + dynval1:  + family:  + var: example  + dynval2:  + family:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  - dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - var2: example # A second variable  + dynval1:  + family:  + var: example  + dynval2:  + family:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc index 05f0a4e21..cf7cbcb70 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable - var2: val1 # A varible outside dynamic family + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1 ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md index ba46e335a..220f2e13c 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable - var2: val1 # A varible outside dynamic family + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1 ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.html b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.html index b1c5406df..dd46b5b8e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    family:                   # A family inside dynamic family
-      var: val1               # A dynamic variable
-  dynval2:                    # A dynamic family
-    family:                   # A family inside dynamic family
-      var: val2               # A dynamic variable
-  var2: val1                  # A varible outside dynamic family
\ No newline at end of file + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh index 10c570bf1..8513a4c8e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - family: # A family inside dynamic family  - var: val1 # A dynamic variable  - dynval2: # A dynamic family  - family: # A family inside dynamic family  - var: val2 # A dynamic variable  - var2: val1 # A varible outside dynamic family  + dynval1:  + family:  + var: val1  + dynval2:  + family:  + var: val2  + var2: val1  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index 05f0a4e21..cf7cbcb70 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable - var2: val1 # A varible outside dynamic family + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1 ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md index ba46e335a..220f2e13c 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - family: # A family inside dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - family: # A family inside dynamic family - var: val2 # A dynamic variable - var2: val1 # A varible outside dynamic family + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1 ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html index b1c5406df..dd46b5b8e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    family:                   # A family inside dynamic family
-      var: val1               # A dynamic variable
-  dynval2:                    # A dynamic family
-    family:                   # A family inside dynamic family
-      var: val2               # A dynamic variable
-  var2: val1                  # A varible outside dynamic family
\ No newline at end of file + dynval1: + family: + var: val1 + dynval2: + family: + var: val2 + var2: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 10c570bf1..8513a4c8e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - family: # A family inside dynamic family  - var: val1 # A dynamic variable  - dynval2: # A dynamic family  - family: # A family inside dynamic family  - var: val2 # A dynamic variable  - var2: val1 # A varible outside dynamic family  + dynval1:  + family:  + var: val1  + dynval2:  + family:  + var: val2  + var2: val1  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index 8a1c8f33a..9fe00bd3e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -3,28 +3,28 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable +rougail: + dynval1: + family: + var: example + dynval2: + family: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable - var2: example # A second variable + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md index 9fc5900a9..5644df7a5 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable +rougail: + dynval1: + family: + var: example + dynval2: + family: + var: example ``` @@ -16,17 +16,17 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - family: # A family - var: example # With a variable - dynval2: # A dynamic family - family: # A family - var: example # With a variable - var2: example # A second variable + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html index 7142d4119..2e23f1006 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.html @@ -1,21 +1,21 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  dynval2:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    family:
+      var: example
+  dynval2:
+    family:
+      var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  dynval2:                    # A dynamic family
-    family:                   # A family
-      var: example            # With a variable
-  var2: example               # A second variable
\ No newline at end of file + dynval1: + family: + var: example + dynval2: + family: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh index e3c72f4a7..7b8c9b4e5 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,32 +1,26 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  - dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - - +rougail:  + dynval1:  + family:  + var: example  + dynval2:  + family:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # A dynamic family  - family: # A family  - var: example # With a variable  - dynval2: # A dynamic family  - family: # A family  - var: example # With a variable  - var2: example # A second variable  + dynval1:  + family:  + var: example  + dynval2:  + family:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.adoc index d204f55fd..0cbd85a1e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffx variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - var: val # A dynamic variable - dynval2: # A dynamic family - var: val # A dynamic variable - newvar: val # A second variable + dynval1: + var: val + dynval2: + var: val + newvar: val ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.gitlab.md index e45b14cde..b63708004 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var1: # A suffx variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - var: val # A dynamic variable - dynval2: # A dynamic family - var: val # A dynamic variable - newvar: val # A second variable + dynval1: + var: val + dynval2: + var: val + newvar: val ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.html b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.html index e399c67d5..6d85bffe6 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffx variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val                  # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: val                  # A dynamic variable
-  newvar: val                 # A second variable
\ No newline at end of file + dynval1: + var: val + dynval2: + var: val + newvar: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.sh index cbcc45fbb..5e2c11796 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffx variable  +rougail:  + var1:   - val1   - val2  - dynval1: # A dynamic family  - var: val # A dynamic variable  - dynval2: # A dynamic family  - var: val # A dynamic variable  - newvar: val # A second variable  + dynval1:  + var: val  + dynval2:  + var: val  + newvar: val  diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.adoc index d204f55fd..0cbd85a1e 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffx variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - var: val # A dynamic variable - dynval2: # A dynamic family - var: val # A dynamic variable - newvar: val # A second variable + dynval1: + var: val + dynval2: + var: val + newvar: val ---- diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.gitlab.md index e45b14cde..b63708004 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var1: # A suffx variable +rougail: + var1: - val1 - val2 - dynval1: # A dynamic family - var: val # A dynamic variable - dynval2: # A dynamic family - var: val # A dynamic variable - newvar: val # A second variable + dynval1: + var: val + dynval2: + var: val + newvar: val ``` diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.html b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.html index e399c67d5..6d85bffe6 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.html +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffx variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val                  # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: val                  # A dynamic variable
-  newvar: val                 # A second variable
\ No newline at end of file + dynval1: + var: val + dynval2: + var: val + newvar: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.sh index cbcc45fbb..5e2c11796 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffx variable  +rougail:  + var1:   - val1   - val2  - dynval1: # A dynamic family  - var: val # A dynamic variable  - dynval2: # A dynamic family  - var: val # A dynamic variable  - newvar: val # A second variable  + dynval1:  + var: val  + dynval2:  + var: val  + newvar: val  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.adoc index 48884867b..07ee10022 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - var2: example # A second variable - dynval1: # A dynamic family - vardyn: val # A dynamic variable - dynval2: # A dynamic family - vardyn: val # A dynamic variable + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.gitlab.md index fd295bac6..7047c35a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ``` @@ -11,15 +11,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - var2: example # A second variable - dynval1: # A dynamic family - vardyn: val # A dynamic variable - dynval2: # A dynamic family - vardyn: val # A dynamic variable + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.html index daf477808..3c789eba1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var2: example               # A second variable

Example with all variables modifiable

+
rougail:
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  var2: example               # A second variable
-  dynval1:                    # A dynamic family
-    vardyn: val               # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: val               # A dynamic variable
\ No newline at end of file + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.sh index 2873b3c62..f2dff2a43 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var2: example # A second variable  - - +rougail:  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - var2: example # A second variable  - dynval1: # A dynamic family  - vardyn: val # A dynamic variable  - dynval2: # A dynamic family  - vardyn: val # A dynamic variable  + var2: example  + dynval1:  + vardyn: val  + dynval2:  + vardyn: val  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.adoc index 48884867b..07ee10022 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - var2: example # A second variable - dynval1: # A dynamic family - vardyn: val # A dynamic variable - dynval2: # A dynamic family - vardyn: val # A dynamic variable + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.gitlab.md index fd295bac6..7047c35a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -rougail: # Rougail - var2: example # A second variable +rougail: + var2: example ``` @@ -11,15 +11,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - var2: example # A second variable - dynval1: # A dynamic family - vardyn: val # A dynamic variable - dynval2: # A dynamic family - vardyn: val # A dynamic variable + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.html index daf477808..3c789eba1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  var2: example               # A second variable

Example with all variables modifiable

+
rougail:
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  var2: example               # A second variable
-  dynval1:                    # A dynamic family
-    vardyn: val               # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: val               # A dynamic variable
\ No newline at end of file + var2: example + dynval1: + vardyn: val + dynval2: + vardyn: val
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.sh index 2873b3c62..f2dff2a43 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - var2: example # A second variable  - - +rougail:  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - var2: example # A second variable  - dynval1: # A dynamic family  - vardyn: val # A dynamic variable  - dynval2: # A dynamic family  - vardyn: val # A dynamic variable  + var2: example  + dynval1:  + vardyn: val  + dynval2:  + vardyn: val  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.adoc index 2b4575327..b13c333e4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.gitlab.md index 7ec7432c8..1d39e31a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,15 +14,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.html index dc0eed2de..9653ed4b1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  var2: example               # A variable calculated
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.sh index b969873cf..c97b147bf 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: example # A variable calculated  + dynval1:  + var: example  + dynval2:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.adoc index 311558afb..65f3ac574 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # Suffix has value - dynval2: # A dynamic family - var: val2 # Suffix has value + dynval1: + var: val1 + dynval2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.gitlab.md index adbe86f20..0826d01a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # Suffix has value - dynval2: # A dynamic family - var: val2 # Suffix has value + dynval1: + var: val1 + dynval2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.html index fbc26f299..c4417ece5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val1                 # Suffix has value
-  dynval2:                    # A dynamic family
-    var: val2                 # Suffix has value
\ No newline at end of file + dynval1: + var: val1 + dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.sh index 6af9dff00..c8df84155 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: val1 # Suffix has value  - dynval2: # A dynamic family  - var: val2 # Suffix has value  + dynval1:  + var: val1  + dynval2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.adoc index 311558afb..65f3ac574 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # Suffix has value - dynval2: # A dynamic family - var: val2 # Suffix has value + dynval1: + var: val1 + dynval2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md index adbe86f20..0826d01a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # Suffix has value - dynval2: # A dynamic family - var: val2 # Suffix has value + dynval1: + var: val1 + dynval2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.html index fbc26f299..c4417ece5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val1                 # Suffix has value
-  dynval2:                    # A dynamic family
-    var: val2                 # Suffix has value
\ No newline at end of file + dynval1: + var: val1 + dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.sh index 6af9dff00..c8df84155 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: val1 # Suffix has value  - dynval2: # A dynamic family  - var: val2 # Suffix has value  + dynval1:  + var: val1  + dynval2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.adoc index f1334d3f8..e2f600c34 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.adoc @@ -3,20 +3,20 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md index 80176d2ce..ce1a9bff2 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,11 +14,11 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.html index bccf2147e..58a54cbe9 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.html @@ -1,13 +1,13 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
\ No newline at end of file +
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.sh index 99e846541..555f7abfb 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,24 +1,18 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.adoc index edae58d9c..59bfe7e97 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: example # A variable calculated + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.gitlab.md index 531e56349..836ae6059 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: example # A variable calculated + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.html index 8685abe01..4bad7dee5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  var2: example               # A variable calculated
\ No newline at end of file + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.sh index 9ddab9e15..95f838525 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - var2: example # A variable calculated  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.adoc index 2b4575327..b13c333e4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.gitlab.md index 7ec7432c8..1d39e31a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,15 +14,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.html index dc0eed2de..9653ed4b1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  var2: example               # A variable calculated
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.sh index b969873cf..c97b147bf 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: example # A variable calculated  + dynval1:  + var: example  + dynval2:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.adoc index 03847445d..7a25e8ad6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.adoc @@ -3,19 +3,19 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.gitlab.md index 14d51e79c..bbe7b533c 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.gitlab.md @@ -2,9 +2,9 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example ``` @@ -12,12 +12,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.html index ced2cc937..9007581fc 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  var2: example               # A variable calculated
\ No newline at end of file + dynval1: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.sh index 50401bd5f..322222f7a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: example # A variable calculated  + dynval1:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.adoc index f6cd48563..5466dd3f0 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var2: example # A variable calculated - var1: # A suffix variable +rougail: + var2: example + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.gitlab.md index 5e8326133..95f275636 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,15 +14,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var2: example # A variable calculated - var1: # A suffix variable +rougail: + var2: example + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable + dynval1: + var: example + dynval2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.html index 5d2ed6213..b77573b44 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var2: example               # A variable calculated
-  var1:                       # A suffix variable
+
rougail:
+  var2: example
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.sh index a4e1aa893..98f8b5bf3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var2: example # A variable calculated  - var1: # A suffix variable  +rougail:  + var2: example  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  + dynval1:  + var: example  + dynval2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.adoc index 5159f570f..673350c2f 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: a value # A variable calculated + var2: a value ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.gitlab.md index 8fa93027a..3a4f872cd 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: a value # A variable calculated + var2: a value ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.html index 34c9e5505..72f9c5579 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  var2: a value               # A variable calculated
\ No newline at end of file + var2: a value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.sh index aa507520e..b1a3cd0c7 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - var2: a value # A variable calculated  + var2: a value  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.adoc index 74c543838..8be8154bf 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: true # A variable calculated + var2: true ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md index 7c9e76c7c..594c105e5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: true # A variable calculated + var2: true ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.html index 3123a6755..cfb67d559 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  var2: true                  # A variable calculated
\ No newline at end of file + var2: true
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.sh index e66deedcb..00b7d7756 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - var2: true # A variable calculated  + var2: true  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.adoc index 4db540f21..837394758 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.adoc @@ -3,11 +3,11 @@ [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: # A variable calculated + var2: - a value - a second value ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md index 316e4ded6..792f9c5ce 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - var2: # A variable calculated + var2: - a value - a second value ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.html index 271666b30..d05976e07 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.html @@ -1,9 +1,9 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  var2:                       # A variable calculated
+  var2:
     - a value
     - a second value
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.sh index 3b485798d..35ad6d6dd 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,14 +1,11 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - var2: # A variable calculated  + var2:   - a value   - a second value  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.adoc index 4de0e0a8c..65f3ac574 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - var: val2 # A dynamic variable + dynval1: + var: val1 + dynval2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.gitlab.md index 111b03a1e..0826d01a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - var: val2 # A dynamic variable + dynval1: + var: val1 + dynval2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.html index 266e349ce..c4417ece5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val1                 # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: val2                 # A dynamic variable
\ No newline at end of file + dynval1: + var: val1 + dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.sh index b89cb3548..c8df84155 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: val1 # A dynamic variable  - dynval2: # A dynamic family  - var: val2 # A dynamic variable  + dynval1:  + var: val1  + dynval2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.adoc index 4de0e0a8c..65f3ac574 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -3,12 +3,12 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - var: val2 # A dynamic variable + dynval1: + var: val1 + dynval2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md index 111b03a1e..0826d01a6 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.gitlab.md @@ -2,14 +2,14 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: val1 # A dynamic variable - dynval2: # A dynamic family - var: val2 # A dynamic variable + dynval1: + var: val1 + dynval2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.html index 266e349ce..c4417ece5 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.html @@ -1,10 +1,10 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var: val1                 # A dynamic variable
-  dynval2:                    # A dynamic family
-    var: val2                 # A dynamic variable
\ No newline at end of file + dynval1: + var: val1 + dynval2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.sh index b89cb3548..c8df84155 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.sh @@ -1,15 +1,12 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: val1 # A dynamic variable  - dynval2: # A dynamic family  - var: val2 # A dynamic variable  + dynval1:  + var: val1  + dynval2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.adoc index 2b4575327..b13c333e4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.gitlab.md index 7ec7432c8..1d39e31a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,15 +14,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.html index dc0eed2de..9653ed4b1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  var2: example               # A variable calculated
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.sh index b969873cf..c97b147bf 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: example # A variable calculated  + dynval1:  + var: example  + dynval2:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.adoc index 7c992292b..b25f22bc0 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + var2: example + dynval2: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + var2: example + dynval2: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md index e69cca880..65f884950 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + var2: example + dynval2: + var1: example + var2: example ``` @@ -16,13 +16,13 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + var2: example + dynval2: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.html index e08dd6869..d7d585efc 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-    var2: example             # A new variable
-  dynval2:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-    var2: example             # A new variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var1: example
+    var2: example
+  dynval2:
+    var1: example
+    var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-    var2: example             # A new variable
-  dynval2:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-    var2: example             # A new variable
\ No newline at end of file +
rougail:
+  dynval1:
+    var1: example
+    var2: example
+  dynval2:
+    var1: example
+    var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.sh index 11432f0d4..fb6e7f132 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  - dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  - - +rougail:  + dynval1:  + var1: example  + var2: example  + dynval2:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  - dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  +rougail:  + dynval1:  + var1: example  + var2: example  + dynval2:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc index 0d0567bb4..c52717aac 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + dynval2: + var1: example + var2: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + dynval2: + var1: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md index 115dbc5fb..7bed6366a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md @@ -2,12 +2,12 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + dynval2: + var1: example + var2: example ``` @@ -15,12 +15,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - dynval1: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - dynval2: # A dynamic famify for {{ identifier }} - var1: example # A dynamic variable - var2: example # A new variable +rougail: + dynval1: + var1: example + dynval2: + var1: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.html index c664b9698..8e3697cbd 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-  dynval2:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-  var2: example               # A new variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var1: example
+  dynval2:
+    var1: example
+  var2: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-  dynval2:                    # A dynamic famify for {{ identifier }}
-    var1: example             # A dynamic variable
-  var2: example               # A new variable
\ No newline at end of file +
rougail:
+  dynval1:
+    var1: example
+  dynval2:
+    var1: example
+  var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.sh index 90dae31cb..354cfa68f 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  - - +rougail:  + dynval1:  + var1: example  + dynval2:  + var1: example  + var2: example  Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - dynval2: # A dynamic famify for {{ identifier }}  - var1: example # A dynamic variable  - var2: example # A new variable  +rougail:  + dynval1:  + var1: example  + dynval2:  + var1: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.adoc index 2b4575327..b13c333e4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.adoc @@ -3,24 +3,24 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.gitlab.md index 7ec7432c8..1d39e31a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + var: example + dynval2: + var: example ``` @@ -14,15 +14,15 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: example # A variable calculated + dynval1: + var: example + dynval2: + var: example + var2: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.html index dc0eed2de..9653ed4b1 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.html @@ -1,17 +1,17 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    var: example
+  dynval2:
+    var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    var: example              # A dynamic variable
-  var2: example               # A variable calculated
\ No newline at end of file + dynval1: + var: example + dynval2: + var: example + var2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.sh index b969873cf..c97b147bf 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.sh @@ -1,28 +1,22 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: example # A variable calculated  + dynval1:  + var: example  + dynval2:  + var: example  + var2: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.adoc index b1ad43614..46063ed82 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable - dynval2: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable +rougail: + dynval1: + var: example + family: + var: example + dynval2: + var: example + family: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.gitlab.md index 36607ac4f..f30704ff3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable - dynval2: # A dynamic family - var: example # A variable - family: # A family - var: example # A new variable +rougail: + dynval1: + var: example + family: + var: example + dynval2: + var: example + family: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.html b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.html index 4138610bf..207955ef4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    var: example              # A variable
-    family:                   # A family
-      var: example            # A new variable
-  dynval2:                    # A dynamic family
-    var: example              # A variable
-    family:                   # A family
-      var: example            # A new variable
\ No newline at end of file +
rougail:
+  dynval1:
+    var: example
+    family:
+      var: example
+  dynval2:
+    var: example
+    family:
+      var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.sh index 798547a98..f8a21d420 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - var: example # A variable  - family: # A family  - var: example # A new variable  - dynval2: # A dynamic family  - var: example # A variable  - family: # A family  - var: example # A new variable  +rougail:  + dynval1:  + var: example  + family:  + var: example  + dynval2:  + var: example  + family:  + var: example  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.adoc index 55ba6afe5..3e3b3d6b7 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.adoc @@ -3,30 +3,30 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val3 - val4 - val1_dyn: # A dynamic family - var1: val1 # A variable 1 - var2: val1 # A variable 2 - var3: val1 # A variable 3 - var4: val4 # A variable 4 - val2_dyn: # A dynamic family - var1: val2 # A variable 1 - var2: val2 # A variable 2 - var3: val2 # A variable 3 - var4: val4 # A variable 4 - val3_dyn: # A dynamic family - var1: val3 # A variable 1 - var2: val3 # A variable 2 - var3: val3 # A variable 3 - var4: val4 # A variable 4 - val4_dyn: # A dynamic family - var1: val4 # A variable 1 - var2: val4 # A variable 2 - var3: val4 # A variable 3 - var4: val4 # A variable 4 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val4 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val4 + val3_dyn: + var1: val3 + var2: val3 + var3: val3 + var4: val4 + val4_dyn: + var1: val4 + var2: val4 + var3: val4 + var4: val4 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.gitlab.md index e7832b2a4..e482d9c7e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.gitlab.md @@ -2,32 +2,32 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val3 - val4 - val1_dyn: # A dynamic family - var1: val1 # A variable 1 - var2: val1 # A variable 2 - var3: val1 # A variable 3 - var4: val4 # A variable 4 - val2_dyn: # A dynamic family - var1: val2 # A variable 1 - var2: val2 # A variable 2 - var3: val2 # A variable 3 - var4: val4 # A variable 4 - val3_dyn: # A dynamic family - var1: val3 # A variable 1 - var2: val3 # A variable 2 - var3: val3 # A variable 3 - var4: val4 # A variable 4 - val4_dyn: # A dynamic family - var1: val4 # A variable 1 - var2: val4 # A variable 2 - var3: val4 # A variable 3 - var4: val4 # A variable 4 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val4 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val4 + val3_dyn: + var1: val3 + var2: val3 + var3: val3 + var4: val4 + val4_dyn: + var1: val4 + var2: val4 + var3: val4 + var4: val4 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.html index 6ff473571..2e96ef7a3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.html @@ -1,28 +1,28 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
     - val3
     - val4
-  val1_dyn:                   # A dynamic family
-    var1: val1                # A variable 1
-    var2: val1                # A variable 2
-    var3: val1                # A variable 3
-    var4: val4                # A variable 4
-  val2_dyn:                   # A dynamic family
-    var1: val2                # A variable 1
-    var2: val2                # A variable 2
-    var3: val2                # A variable 3
-    var4: val4                # A variable 4
-  val3_dyn:                   # A dynamic family
-    var1: val3                # A variable 1
-    var2: val3                # A variable 2
-    var3: val3                # A variable 3
-    var4: val4                # A variable 4
-  val4_dyn:                   # A dynamic family
-    var1: val4                # A variable 1
-    var2: val4                # A variable 2
-    var3: val4                # A variable 3
-    var4: val4                # A variable 4
\ No newline at end of file + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val4 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val4 + val3_dyn: + var1: val3 + var2: val3 + var3: val3 + var4: val4 + val4_dyn: + var1: val4 + var2: val4 + var3: val4 + var4: val4
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.sh index c0be384f1..ea1d6e585 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.sh @@ -1,33 +1,30 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2   - val3   - val4  - val1_dyn: # A dynamic family  - var1: val1 # A variable 1  - var2: val1 # A variable 2  - var3: val1 # A variable 3  - var4: val4 # A variable 4  - val2_dyn: # A dynamic family  - var1: val2 # A variable 1  - var2: val2 # A variable 2  - var3: val2 # A variable 3  - var4: val4 # A variable 4  - val3_dyn: # A dynamic family  - var1: val3 # A variable 1  - var2: val3 # A variable 2  - var3: val3 # A variable 3  - var4: val4 # A variable 4  - val4_dyn: # A dynamic family  - var1: val4 # A variable 1  - var2: val4 # A variable 2  - var3: val4 # A variable 3  - var4: val4 # A variable 4  + val1_dyn:  + var1: val1  + var2: val1  + var3: val1  + var4: val4  + val2_dyn:  + var1: val2  + var2: val2  + var3: val2  + var4: val4  + val3_dyn:  + var1: val3  + var2: val3  + var3: val3  + var4: val4  + val4_dyn:  + var1: val4  + var2: val4  + var3: val4  + var4: val4  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.adoc index f1bd4f722..e2f5d7ae3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.gitlab.md index 5fbbe7835..cbe15f09d 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.html index d74a05f9c..bbcc6637e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    var: val1
+  my_dyn_family_val2:
+    var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.sh index 5c4042aee..3b2c5ac02 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  - var2: # A variable  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.adoc index fac6580f0..ffbd68a68 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var2: # A variable +rougail: + var2: - val1 - val2 - var: # A suffix variable + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.gitlab.md index 30a8e807b..2495ba8a3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - var2: # A variable +rougail: + var2: - val1 - val2 - var: # A suffix variable + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.html index 2a4b8ac0e..cd57ba0a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var2:                       # A variable
+
rougail:
+  var2:
     - val1
     - val2
-  var:                        # A suffix variable
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
\ No newline at end of file + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.sh index 948240a3d..2b677501e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var2: # A variable  +rougail:  + var2:   - val1   - val2  - var: # A suffix variable  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.adoc index fac6580f0..ffbd68a68 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var2: # A variable +rougail: + var2: - val1 - val2 - var: # A suffix variable + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.gitlab.md index 30a8e807b..2495ba8a3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - var2: # A variable +rougail: + var2: - val1 - val2 - var: # A suffix variable + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.html index 2a4b8ac0e..cd57ba0a4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var2:                       # A variable
+
rougail:
+  var2:
     - val1
     - val2
-  var:                        # A suffix variable
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
\ No newline at end of file + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.sh index 948240a3d..2b677501e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var2: # A variable  +rougail:  + var2:   - val1   - val2  - var: # A suffix variable  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.adoc index f1bd4f722..e2f5d7ae3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.gitlab.md index 5fbbe7835..cbe15f09d 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.html index d74a05f9c..bbcc6637e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    var: val1
+  my_dyn_family_val2:
+    var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.sh index 5c4042aee..3b2c5ac02 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  - var2: # A variable  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.adoc index f1bd4f722..e2f5d7ae3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.gitlab.md index 5fbbe7835..cbe15f09d 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.html index d74a05f9c..bbcc6637e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    var: val1
+  my_dyn_family_val2:
+    var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.sh index 5c4042aee..3b2c5ac02 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  - var2: # A variable  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.adoc index f1bd4f722..e2f5d7ae3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.gitlab.md index 5fbbe7835..cbe15f09d 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.html index d74a05f9c..bbcc6637e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    var: val1
+  my_dyn_family_val2:
+    var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.sh index 5c4042aee..3b2c5ac02 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  - var2: # A variable  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.adoc index f1bd4f722..e2f5d7ae3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.adoc @@ -3,15 +3,15 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md index 5fbbe7835..cbe15f09d 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - var: val1 # A variable inside a dynamic family - my_dyn_family_val2: # A dynamic family - var: val2 # A variable inside a dynamic family - var2: # A variable + my_dyn_family_val1: + var: val1 + my_dyn_family_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.html index d74a05f9c..bbcc6637e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.html @@ -1,13 +1,13 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    var: val1                 # A variable inside a dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    var: val2                 # A variable inside a dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    var: val1
+  my_dyn_family_val2:
+    var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.sh index 5c4042aee..3b2c5ac02 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -1,18 +1,15 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - var: val1 # A variable inside a dynamic family  - my_dyn_family_val2: # A dynamic family  - var: val2 # A variable inside a dynamic family  - var2: # A variable  + my_dyn_family_val1:  + var: val1  + my_dyn_family_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc index 061be8d52..cae617fca 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - subdyn_val1: # A sub dynamic family - var: val1 # A variable inside a sub dynamic family - subdyn_val2: # A sub dynamic family - var: val2 # A variable inside a sub dynamic family - my_dyn_family_val2: # A dynamic family - subdyn_val1: # A sub dynamic family - var: val1 # A variable inside a sub dynamic family - subdyn_val2: # A sub dynamic family - var: val2 # A variable inside a sub dynamic family - var2: # A variable + my_dyn_family_val1: + subdyn_val1: + var: val1 + subdyn_val2: + var: val2 + my_dyn_family_val2: + subdyn_val1: + var: val1 + subdyn_val2: + var: val2 + var2: - val1 - val2 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md index a4232c8e8..0481596ce 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md @@ -2,21 +2,21 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - my_dyn_family_val1: # A dynamic family - subdyn_val1: # A sub dynamic family - var: val1 # A variable inside a sub dynamic family - subdyn_val2: # A sub dynamic family - var: val2 # A variable inside a sub dynamic family - my_dyn_family_val2: # A dynamic family - subdyn_val1: # A sub dynamic family - var: val1 # A variable inside a sub dynamic family - subdyn_val2: # A sub dynamic family - var: val2 # A variable inside a sub dynamic family - var2: # A variable + my_dyn_family_val1: + subdyn_val1: + var: val1 + subdyn_val2: + var: val2 + my_dyn_family_val2: + subdyn_val1: + var: val1 + subdyn_val2: + var: val2 + var2: - val1 - val2 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.html index 6ad0a5430..2adf7fa7b 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.html @@ -1,19 +1,19 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  my_dyn_family_val1:         # A dynamic family
-    subdyn_val1:              # A sub dynamic family
-      var: val1               # A variable inside a sub dynamic family
-    subdyn_val2:              # A sub dynamic family
-      var: val2               # A variable inside a sub dynamic family
-  my_dyn_family_val2:         # A dynamic family
-    subdyn_val1:              # A sub dynamic family
-      var: val1               # A variable inside a sub dynamic family
-    subdyn_val2:              # A sub dynamic family
-      var: val2               # A variable inside a sub dynamic family
-  var2:                       # A variable
+  my_dyn_family_val1:
+    subdyn_val1:
+      var: val1
+    subdyn_val2:
+      var: val2
+  my_dyn_family_val2:
+    subdyn_val1:
+      var: val1
+    subdyn_val2:
+      var: val2
+  var2:
     - val1
     - val2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.sh index 8fc9f8f60..5bf739cc3 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -1,24 +1,21 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - my_dyn_family_val1: # A dynamic family  - subdyn_val1: # A sub dynamic family  - var: val1 # A variable inside a sub dynamic family  - subdyn_val2: # A sub dynamic family  - var: val2 # A variable inside a sub dynamic family  - my_dyn_family_val2: # A dynamic family  - subdyn_val1: # A sub dynamic family  - var: val1 # A variable inside a sub dynamic family  - subdyn_val2: # A sub dynamic family  - var: val2 # A variable inside a sub dynamic family  - var2: # A variable  + my_dyn_family_val1:  + subdyn_val1:  + var: val1  + subdyn_val2:  + var: val2  + my_dyn_family_val2:  + subdyn_val1:  + var: val1  + subdyn_val2:  + var: val2  + var2:   - val1   - val2  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.adoc index 6549f298e..9d950793c 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family - dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family - var2: val1 # A variable + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md index 282da16b3..1726dc384 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family - dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family - var2: val1 # A variable + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.html index 3e3f09ab1..eb6495d09 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dyn_val1:                   # A dynamic family
-    var: val1                 # A variable inside dynamic family
-  dyn_val2:                   # A dynamic family
-    var: val2                 # A variable inside dynamic family
-  var2: val1                  # A variable
\ No newline at end of file + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.sh index d99bb0277..3a8e8bebd 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dyn_val1: # A dynamic family  - var: val1 # A variable inside dynamic family  - dyn_val2: # A dynamic family  - var: val2 # A variable inside dynamic family  - var2: val1 # A variable  + dyn_val1:  + var: val1  + dyn_val2:  + var: val2  + var2: val1  diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc index 863658151..9d950793c 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -3,13 +3,13 @@ [,yaml] ---- --- -rougail: # Rougail - var: # Asuffix variable +rougail: + var: - val1 - val2 - dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family - dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family - var2: val1 # A variable + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1 ---- diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md index 800881363..1726dc384 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md @@ -2,15 +2,15 @@ ```yaml --- -rougail: # Rougail - var: # Asuffix variable +rougail: + var: - val1 - val2 - dyn_val1: # A dynamic family - var: val1 # A variable inside dynamic family - dyn_val2: # A dynamic family - var: val2 # A variable inside dynamic family - var2: val1 # A variable + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1 ``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.html b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.html index d2031866b..eb6495d09 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.html +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.html @@ -1,11 +1,11 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # Asuffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dyn_val1:                   # A dynamic family
-    var: val1                 # A variable inside dynamic family
-  dyn_val2:                   # A dynamic family
-    var: val2                 # A variable inside dynamic family
-  var2: val1                  # A variable
\ No newline at end of file + dyn_val1: + var: val1 + dyn_val2: + var: val2 + var2: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.sh index a56956dea..3a8e8bebd 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,16 +1,13 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # Asuffix variable  +rougail:  + var:   - val1   - val2  - dyn_val1: # A dynamic family  - var: val1 # A variable inside dynamic family  - dyn_val2: # A dynamic family  - var: val2 # A variable inside dynamic family  - var2: val1 # A variable  + dyn_val1:  + var: val1  + dyn_val2:  + var: val2  + var2: val1  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_inside.adoc index d277760eb..f8b3336b3 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val1_dyn: # A dynamic family - var1: val1 # Value is suffix - var2: val1 # Value is first variable - var3: val1 # Value is relative first variable - var4: val1 # Value is first variable of val1 - val2_dyn: # A dynamic family - var1: val2 # Value is suffix - var2: val2 # Value is first variable - var3: val2 # Value is relative first variable - var4: val1 # Value is first variable of val1 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1 ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_inside.gitlab.md index f0809529a..4f4c66bb0 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside.gitlab.md @@ -2,20 +2,20 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val1_dyn: # A dynamic family - var1: val1 # Value is suffix - var2: val1 # Value is first variable - var3: val1 # Value is relative first variable - var4: val1 # Value is first variable of val1 - val2_dyn: # A dynamic family - var1: val2 # Value is suffix - var2: val2 # Value is first variable - var3: val2 # Value is relative first variable - var4: val1 # Value is first variable of val1 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1 ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside.html b/tests/results/test_namespace_examples/60_6family_dynamic_inside.html index f08f9cea7..bc3b1a669 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside.html @@ -1,16 +1,16 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  val1_dyn:                   # A dynamic family
-    var1: val1                # Value is suffix
-    var2: val1                # Value is first variable
-    var3: val1                # Value is relative first variable
-    var4: val1                # Value is first variable of val1
-  val2_dyn:                   # A dynamic family
-    var1: val2                # Value is suffix
-    var2: val2                # Value is first variable
-    var3: val2                # Value is relative first variable
-    var4: val1                # Value is first variable of val1
\ No newline at end of file + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside.sh b/tests/results/test_namespace_examples/60_6family_dynamic_inside.sh index 79931c7df..692d12dec 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside.sh @@ -1,21 +1,18 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - val1_dyn: # A dynamic family  - var1: val1 # Value is suffix  - var2: val1 # Value is first variable  - var3: val1 # Value is relative first variable  - var4: val1 # Value is first variable of val1  - val2_dyn: # A dynamic family  - var1: val2 # Value is suffix  - var2: val2 # Value is first variable  - var3: val2 # Value is relative first variable  - var4: val1 # Value is first variable of val1  + val1_dyn:  + var1: val1  + var2: val1  + var3: val1  + var4: val1  + val2_dyn:  + var1: val2  + var2: val2  + var3: val2  + var4: val1  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.adoc index d277760eb..f8b3336b3 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.adoc @@ -3,18 +3,18 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val1_dyn: # A dynamic family - var1: val1 # Value is suffix - var2: val1 # Value is first variable - var3: val1 # Value is relative first variable - var4: val1 # Value is first variable of val1 - val2_dyn: # A dynamic family - var1: val2 # Value is suffix - var2: val2 # Value is first variable - var3: val2 # Value is relative first variable - var4: val1 # Value is first variable of val1 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1 ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.gitlab.md index f0809529a..4f4c66bb0 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.gitlab.md @@ -2,20 +2,20 @@ ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - val1_dyn: # A dynamic family - var1: val1 # Value is suffix - var2: val1 # Value is first variable - var3: val1 # Value is relative first variable - var4: val1 # Value is first variable of val1 - val2_dyn: # A dynamic family - var1: val2 # Value is suffix - var2: val2 # Value is first variable - var3: val2 # Value is relative first variable - var4: val1 # Value is first variable of val1 + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1 ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.html b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.html index f08f9cea7..bc3b1a669 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.html @@ -1,16 +1,16 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  val1_dyn:                   # A dynamic family
-    var1: val1                # Value is suffix
-    var2: val1                # Value is first variable
-    var3: val1                # Value is relative first variable
-    var4: val1                # Value is first variable of val1
-  val2_dyn:                   # A dynamic family
-    var1: val2                # Value is suffix
-    var2: val2                # Value is first variable
-    var3: val2                # Value is relative first variable
-    var4: val1                # Value is first variable of val1
\ No newline at end of file + val1_dyn: + var1: val1 + var2: val1 + var3: val1 + var4: val1 + val2_dyn: + var1: val2 + var2: val2 + var3: val2 + var4: val1
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.sh index 79931c7df..692d12dec 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.sh @@ -1,21 +1,18 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - val1_dyn: # A dynamic family  - var1: val1 # Value is suffix  - var2: val1 # Value is first variable  - var3: val1 # Value is relative first variable  - var4: val1 # Value is first variable of val1  - val2_dyn: # A dynamic family  - var1: val2 # Value is suffix  - var2: val2 # Value is first variable  - var3: val2 # Value is relative first variable  - var4: val1 # Value is first variable of val1  + val1_dyn:  + var1: val1  + var2: val1  + var3: val1  + var4: val1  + val2_dyn:  + var1: val2  + var2: val2  + var3: val2  + var4: val1  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.adoc index 239651cf8..ecc991155 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.adoc @@ -3,31 +3,31 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +rougail: + dynval1: + leadership: + - leader: example + dynval2: + leadership: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.gitlab.md index a23dd8c27..8c91de814 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +rougail: + dynval1: + leadership: + - leader: example + dynval2: + leadership: + - leader: example ``` @@ -16,20 +16,20 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.html b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.html index fd9acf69a..1889163ef 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.html @@ -1,24 +1,24 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-  dynval2:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader

Example with all variables modifiable

+
rougail:
+  dynval1:
+    leadership:
+      - leader: example
+  dynval2:
+    leadership:
+      - leader: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-        follower1: example    # A follower1
-        follower2: example    # A follower2
-  dynval2:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-        follower1: example    # A follower1
-        follower2: example    # A follower2
\ No newline at end of file + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.sh index 03e957939..6ed67eb4d 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.sh @@ -1,35 +1,29 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - - +rougail:  + dynval1:  + leadership:  + - leader: example  + dynval2:  + leadership:  + - leader: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  - dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  + dynval1:  + leadership:  + - leader: example  + follower1: example  + follower2: example  + dynval2:  + leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.adoc index 239651cf8..ecc991155 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.adoc @@ -3,31 +3,31 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +rougail: + dynval1: + leadership: + - leader: example + dynval2: + leadership: + - leader: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.gitlab.md index a23dd8c27..8c91de814 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.gitlab.md @@ -2,13 +2,13 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader +rougail: + dynval1: + leadership: + - leader: example + dynval2: + leadership: + - leader: example ``` @@ -16,20 +16,20 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A suffix variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 - dynval2: # A dynamic family - leadership: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.html b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.html index fd9acf69a..1889163ef 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.html @@ -1,24 +1,24 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-  dynval2:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader

Example with all variables modifiable

+
rougail:
+  dynval1:
+    leadership:
+      - leader: example
+  dynval2:
+    leadership:
+      - leader: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A suffix variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-        follower1: example    # A follower1
-        follower2: example    # A follower2
-  dynval2:                    # A dynamic family
-    leadership:               # A leadership
-      - leader: example       # A leader
-        follower1: example    # A follower1
-        follower2: example    # A follower2
\ No newline at end of file + dynval1: + leadership: + - leader: example + follower1: example + follower2: example + dynval2: + leadership: + - leader: example + follower1: example + follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.sh index 03e957939..6ed67eb4d 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.sh @@ -1,35 +1,29 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - - +rougail:  + dynval1:  + leadership:  + - leader: example  + dynval2:  + leadership:  + - leader: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A suffix variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  - dynval2: # A dynamic family  - leadership: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  + dynval1:  + leadership:  + - leader: example  + follower1: example  + follower2: example  + dynval2:  + leadership:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.adoc index 951eda4bb..878b3478f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.adoc @@ -3,32 +3,32 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.gitlab.md index 5d3385c56..d1436fd0f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.gitlab.md @@ -2,34 +2,34 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.html b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.html index 745f7eb40..51d99d5d4 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.html @@ -1,30 +1,30 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var:                      # A dynamic variable
+  dynval1:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval2 # Merge identifiers
-  dynval2:                    # A dynamic family
-    var:                      # A dynamic variable
+    dyn_tval1:
+      var: tval1
+      var_identifier: val1
+      var_identifiers: val1-tval1
+    dyn_tval2:
+      var: tval2
+      var_identifier: val1
+      var_identifiers: val1-tval2
+  dynval2:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval2 # Merge identifiers
\ No newline at end of file + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.sh index 7c255f7ef..5e5a396bb 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.sh @@ -1,35 +1,32 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: # A dynamic variable  + dynval1:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval2 # Merge identifiers  - dynval2: # A dynamic family  - var: # A dynamic variable  + dyn_tval1:  + var: tval1  + var_identifier: val1  + var_identifiers: val1-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val1  + var_identifiers: val1-tval2  + dynval2:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval2 # Merge identifiers  + dyn_tval1:  + var: tval1  + var_identifier: val2  + var_identifiers: val2-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val2  + var_identifiers: val2-tval2  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.adoc index 951eda4bb..878b3478f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.adoc @@ -3,32 +3,32 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.gitlab.md index 5d3385c56..d1436fd0f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.gitlab.md @@ -2,34 +2,34 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.html b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.html index 745f7eb40..51d99d5d4 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.html @@ -1,30 +1,30 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var:                      # A dynamic variable
+  dynval1:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval2 # Merge identifiers
-  dynval2:                    # A dynamic family
-    var:                      # A dynamic variable
+    dyn_tval1:
+      var: tval1
+      var_identifier: val1
+      var_identifiers: val1-tval1
+    dyn_tval2:
+      var: tval2
+      var_identifier: val1
+      var_identifiers: val1-tval2
+  dynval2:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval2 # Merge identifiers
\ No newline at end of file + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.sh index 7c255f7ef..5e5a396bb 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.sh @@ -1,35 +1,32 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: # A dynamic variable  + dynval1:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval2 # Merge identifiers  - dynval2: # A dynamic family  - var: # A dynamic variable  + dyn_tval1:  + var: tval1  + var_identifier: val1  + var_identifiers: val1-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val1  + var_identifiers: val1-tval2  + dynval2:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval2 # Merge identifiers  + dyn_tval1:  + var: tval1  + var_identifier: val2  + var_identifiers: val2-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val2  + var_identifiers: val2-tval2  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.adoc index 2be7b6b27..d51652de1 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.adoc @@ -3,35 +3,35 @@ [,yaml] ---- --- -rougail: # Rougail - val1: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable +rougail: + val1: + val1: + var: example + val2: + var: example + val2: + val1: + var: example + val2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - val1: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable + val1: + val1: + var: example + val2: + var: example + val2: + val1: + var: example + val2: + var: example ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md index 156531738..10cd363c3 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - val1: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable +rougail: + val1: + val1: + var: example + val2: + var: example + val2: + val1: + var: example + val2: + var: example ``` @@ -20,20 +20,20 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - val1: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - val1: # A dynamic family - var: example # A dynamic variable - val2: # A dynamic family - var: example # A dynamic variable + val1: + val1: + var: example + val2: + var: example + val2: + val1: + var: example + val2: + var: example ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.html b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.html index 17c2b91dd..1fd342036 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.html @@ -1,28 +1,28 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  val1:                       # A dynamic family
-    val1:                     # A dynamic family
-      var: example            # A dynamic variable
-    val2:                     # A dynamic family
-      var: example            # A dynamic variable
-  val2:                       # A dynamic family
-    val1:                     # A dynamic family
-      var: example            # A dynamic variable
-    val2:                     # A dynamic family
-      var: example            # A dynamic variable

Example with all variables modifiable

+
rougail:
+  val1:
+    val1:
+      var: example
+    val2:
+      var: example
+  val2:
+    val1:
+      var: example
+    val2:
+      var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  val1:                       # A dynamic family
-    val1:                     # A dynamic family
-      var: example            # A dynamic variable
-    val2:                     # A dynamic family
-      var: example            # A dynamic variable
-  val2:                       # A dynamic family
-    val1:                     # A dynamic family
-      var: example            # A dynamic variable
-    val2:                     # A dynamic family
-      var: example            # A dynamic variable
\ No newline at end of file + val1: + val1: + var: example + val2: + var: example + val2: + val1: + var: example + val2: + var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.sh index b044f1aa6..bca0e316e 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -1,39 +1,33 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - val1: # A dynamic family  - val1: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - val1: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - var: example # A dynamic variable  - - +rougail:  + val1:  + val1:  + var: example  + val2:  + var: example  + val2:  + val1:  + var: example  + val2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - val1: # A dynamic family  - val1: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - val1: # A dynamic family  - var: example # A dynamic variable  - val2: # A dynamic family  - var: example # A dynamic variable  + val1:  + val1:  + var: example  + val2:  + var: example  + val2:  + val1:  + var: example  + val2:  + var: example  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.adoc index 951eda4bb..878b3478f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.adoc @@ -3,32 +3,32 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.gitlab.md index 5d3385c56..d1436fd0f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.gitlab.md @@ -2,34 +2,34 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-tval2 # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_tval1: + var: tval1 + var_identifier: val1 + var_identifiers: val1-tval1 + dyn_tval2: + var: tval2 + var_identifier: val1 + var_identifiers: val1-tval2 + dynval2: + var: - tval1 - tval2 - dyn_tval1: # A Second dynamic variable - var: tval1 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval1 # Merge identifiers - dyn_tval2: # A Second dynamic variable - var: tval2 # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-tval2 # Merge identifiers + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2 ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.html b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.html index 745f7eb40..51d99d5d4 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.html @@ -1,30 +1,30 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var:                      # A dynamic variable
+  dynval1:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-tval2 # Merge identifiers
-  dynval2:                    # A dynamic family
-    var:                      # A dynamic variable
+    dyn_tval1:
+      var: tval1
+      var_identifier: val1
+      var_identifiers: val1-tval1
+    dyn_tval2:
+      var: tval2
+      var_identifier: val1
+      var_identifiers: val1-tval2
+  dynval2:
+    var:
       - tval1
       - tval2
-    dyn_tval1:                # A Second dynamic variable
-      var: tval1              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval1 # Merge identifiers
-    dyn_tval2:                # A Second dynamic variable
-      var: tval2              # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-tval2 # Merge identifiers
\ No newline at end of file + dyn_tval1: + var: tval1 + var_identifier: val2 + var_identifiers: val2-tval1 + dyn_tval2: + var: tval2 + var_identifier: val2 + var_identifiers: val2-tval2
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.sh index 7c255f7ef..5e5a396bb 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.sh @@ -1,35 +1,32 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: # A dynamic variable  + dynval1:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-tval2 # Merge identifiers  - dynval2: # A dynamic family  - var: # A dynamic variable  + dyn_tval1:  + var: tval1  + var_identifier: val1  + var_identifiers: val1-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val1  + var_identifiers: val1-tval2  + dynval2:  + var:   - tval1   - tval2  - dyn_tval1: # A Second dynamic variable  - var: tval1 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval1 # Merge identifiers  - dyn_tval2: # A Second dynamic variable  - var: tval2 # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-tval2 # Merge identifiers  + dyn_tval1:  + var: tval1  + var_identifier: val2  + var_identifiers: val2-tval1  + dyn_tval2:  + var: tval2  + var_identifier: val2  + var_identifiers: val2-tval2  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.adoc index 4db124459..3f2810035 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.adoc @@ -3,22 +3,22 @@ [,yaml] ---- --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - example - dyn_example: # A Second dynamic variable - var: example # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-example # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_example: + var: example + var_identifier: val1 + var_identifiers: val1-example + dynval2: + var: - example - dyn_example: # A Second dynamic variable - var: example # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-example # Merge identifiers + dyn_example: + var: example + var_identifier: val2 + var_identifiers: val2-example ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.gitlab.md index d462d72df..b04a1b08c 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.gitlab.md @@ -2,24 +2,24 @@ ```yaml --- -rougail: # Rougail - var: # A identifier variable +rougail: + var: - val1 - val2 - dynval1: # A dynamic family - var: # A dynamic variable + dynval1: + var: - example - dyn_example: # A Second dynamic variable - var: example # A variable dynamic - var_identifier: val1 # Identifier from first family - var_identifiers: val1-example # Merge identifiers - dynval2: # A dynamic family - var: # A dynamic variable + dyn_example: + var: example + var_identifier: val1 + var_identifiers: val1-example + dynval2: + var: - example - dyn_example: # A Second dynamic variable - var: example # A variable dynamic - var_identifier: val2 # Identifier from first family - var_identifiers: val2-example # Merge identifiers + dyn_example: + var: example + var_identifier: val2 + var_identifiers: val2-example ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.html b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.html index f3bd48770..df4e035f2 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.html @@ -1,20 +1,20 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A identifier variable
+
rougail:
+  var:
     - val1
     - val2
-  dynval1:                    # A dynamic family
-    var:                      # A dynamic variable
+  dynval1:
+    var:
       - example
-    dyn_example:              # A Second dynamic variable
-      var: example            # A variable dynamic
-      var_identifier: val1    # Identifier from first family
-      var_identifiers: val1-example # Merge identifiers
-  dynval2:                    # A dynamic family
-    var:                      # A dynamic variable
+    dyn_example:
+      var: example
+      var_identifier: val1
+      var_identifiers: val1-example
+  dynval2:
+    var:
       - example
-    dyn_example:              # A Second dynamic variable
-      var: example            # A variable dynamic
-      var_identifier: val2    # Identifier from first family
-      var_identifiers: val2-example # Merge identifiers
\ No newline at end of file + dyn_example: + var: example + var_identifier: val2 + var_identifiers: val2-example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.sh index 2505706e9..09b82cd3c 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.sh @@ -1,25 +1,22 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A identifier variable  +rougail:  + var:   - val1   - val2  - dynval1: # A dynamic family  - var: # A dynamic variable  + dynval1:  + var:   - example  - dyn_example: # A Second dynamic variable  - var: example # A variable dynamic  - var_identifier: val1 # Identifier from first family  - var_identifiers: val1-example # Merge identifiers  - dynval2: # A dynamic family  - var: # A dynamic variable  + dyn_example:  + var: example  + var_identifier: val1  + var_identifiers: val1-example  + dynval2:  + var:   - example  - dyn_example: # A Second dynamic variable  - var: example # A variable dynamic  - var_identifier: val2 # Identifier from first family  - var_identifiers: val2-example # Merge identifiers  + dyn_example:  + var: example  + var_identifier: val2  + var_identifiers: val2-example  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.adoc index ae47fb00f..df9f79c68 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.adoc @@ -3,38 +3,38 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: # A variable calculated + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example + var2: - - ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.gitlab.md index c98966e10..8721e08fd 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example ``` @@ -20,21 +20,21 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: # A variable calculated + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example + var2: - - ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.html b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.html index b588084e3..99caa3ef2 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.html @@ -1,31 +1,31 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  dynval2:
+    dynval1:
+      var: example
+    dynval2:
+      var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  var2:                       # A variable calculated
+  dynval1:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  dynval2:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  var2:
     - 
     -
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.sh index deb085766..e2c43ed5a 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi.sh @@ -1,42 +1,36 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + dynval1:  + var: example  + dynval2:  + var: example  + dynval2:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: # A variable calculated  + dynval1:  + dynval1:  + var: example  + dynval2:  + var: example  + dynval2:  + dynval1:  + var: example  + dynval2:  + var: example  + var2:   -    -  diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.adoc index ae47fb00f..df9f79c68 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.adoc +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.adoc @@ -3,38 +3,38 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: # A variable calculated + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example + var2: - - ---- diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.gitlab.md index c98966e10..8721e08fd 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.gitlab.md @@ -2,17 +2,17 @@ ```yaml --- -rougail: # Rougail - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable +rougail: + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example ``` @@ -20,21 +20,21 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var1: # A suffix variable +rougail: + var1: - val1 - val2 - dynval1: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - dynval1: # dyn{{ identifier }} - var: example # A dynamic variable - dynval2: # dyn{{ identifier }} - var: example # A dynamic variable - var2: # A variable calculated + dynval1: + dynval1: + var: example + dynval2: + var: example + dynval2: + dynval1: + var: example + dynval2: + var: example + var2: - - ``` diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.html b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.html index b588084e3..99caa3ef2 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.html +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.html @@ -1,31 +1,31 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  dynval2:
+    dynval1:
+      var: example
+    dynval2:
+      var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var1:                       # A suffix variable
+
rougail:
+  var1:
     - val1
     - val2
-  dynval1:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  dynval2:                    # dyn{{ identifier }}
-    dynval1:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-    dynval2:                  # dyn{{ identifier }}
-      var: example            # A dynamic variable
-  var2:                       # A variable calculated
+  dynval1:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  dynval2:
+    dynval1:
+      var: example
+    dynval2:
+      var: example
+  var2:
     - 
     -
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.sh index deb085766..e2c43ed5a 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_examples/60_6family_dynamic_suffix_auto_multi2.sh @@ -1,42 +1,36 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - - +rougail:  + dynval1:  + dynval1:  + var: example  + dynval2:  + var: example  + dynval2:  + dynval1:  + var: example  + dynval2:  + var: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var1: # A suffix variable  +rougail:  + var1:   - val1   - val2  - dynval1: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - dynval1: # dyn{{ identifier }}  - var: example # A dynamic variable  - dynval2: # dyn{{ identifier }}  - var: example # A dynamic variable  - var2: # A variable calculated  + dynval1:  + dynval1:  + var: example  + dynval2:  + var: example  + dynval2:  + dynval1:  + var: example  + dynval2:  + var: example  + var2:   -    -  diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic.adoc b/tests/results/test_namespace_examples/60_9extra_dynamic.adoc index 35eaaf06a..6ecbc96f6 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic.adoc +++ b/tests/results/test_namespace_examples/60_9extra_dynamic.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ---- == Example with all variables modifiable @@ -12,10 +12,10 @@ extra: # Extra [,yaml] ---- --- -rougail: # Rougail - var: # A variable +rougail: + var: - a -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ---- diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_examples/60_9extra_dynamic.gitlab.md index e4034cd45..a5bec81e9 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic.gitlab.md +++ b/tests/results/test_namespace_examples/60_9extra_dynamic.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ``` @@ -12,11 +12,11 @@ extra: # Extra ```yaml --- -rougail: # Rougail - var: # A variable +rougail: + var: - a -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ``` diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic.html b/tests/results/test_namespace_examples/60_9extra_dynamic.html index e47e7264d..6c5e74456 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic.html +++ b/tests/results/test_namespace_examples/60_9extra_dynamic.html @@ -1,12 +1,12 @@

Example with mandatory variables not filled in

-
extra:                        # Extra
-  dyn_a:                      # dyn_{{ identifier }}
+
extra:
+  dyn_a:
     var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var:                        # A variable
+
rougail:
+  var:
     - a
-extra:                        # Extra
-  dyn_a:                      # dyn_{{ identifier }}
+extra:
+  dyn_a:
     var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic.sh b/tests/results/test_namespace_examples/60_9extra_dynamic.sh index 3dac9762e..bd6e493f2 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_examples/60_9extra_dynamic.sh @@ -1,23 +1,17 @@ - - Example with mandatory variables not filled in - ---  -extra: # Extra  - dyn_a: # dyn_{{ identifier }}  +extra:  + dyn_a:   var: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - var: # A variable  +rougail:  + var:   - a  -extra: # Extra  - dyn_a: # dyn_{{ identifier }}  +extra:  + dyn_a:   var: example  diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.adoc b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.adoc index 3ad0c1488..c0b644afc 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.adoc +++ b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.adoc @@ -3,8 +3,8 @@ [,yaml] ---- --- -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ---- == Example with all variables modifiable @@ -12,13 +12,13 @@ extra: # Extra [,yaml] ---- --- -rougail: # Rougail - general: # Gรฉnรฉral - varname: # No change +rougail: + general: + varname: - a -extra: # Extra - var: # A variable +extra: + var: - a - dyn_a: # dyn_{{ identifier }} + dyn_a: var: example ---- diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.gitlab.md index 7d72fe20e..2bcdf853b 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.gitlab.md +++ b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.gitlab.md @@ -2,8 +2,8 @@ ```yaml --- -extra: # Extra - dyn_a: # dyn_{{ identifier }} +extra: + dyn_a: var: example ``` @@ -12,14 +12,14 @@ extra: # Extra ```yaml --- -rougail: # Rougail - general: # Gรฉnรฉral - varname: # No change +rougail: + general: + varname: - a -extra: # Extra - var: # A variable +extra: + var: - a - dyn_a: # dyn_{{ identifier }} + dyn_a: var: example ``` diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.html b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.html index dcd956b74..84d757a51 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.html +++ b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.html @@ -1,15 +1,15 @@

Example with mandatory variables not filled in

-
extra:                        # Extra
-  dyn_a:                      # dyn_{{ identifier }}
+
extra:
+  dyn_a:
     var: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  general:                    # Gรฉnรฉral
-    varname:                  # No change
+
rougail:
+  general:
+    varname:
       - a
-extra:                        # Extra
-  var:                        # A variable
+extra:
+  var:
     - a
-  dyn_a:                      # dyn_{{ identifier }}
+  dyn_a:
     var: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.sh index ed11000ba..77e1feeb4 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.sh @@ -1,26 +1,20 @@ - - Example with mandatory variables not filled in - ---  -extra: # Extra  - dyn_a: # dyn_{{ identifier }}  +extra:  + dyn_a:   var: example  - - Example with all variables modifiable - ---  -rougail: # Rougail  - general: # Gรฉnรฉral  - varname: # No change  +rougail:  + general:  + varname:   - a  -extra: # Extra  - var: # A variable  +extra:  + var:   - a  - dyn_a: # dyn_{{ identifier }}  + dyn_a:   var: example  diff --git a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.adoc b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.adoc index e1146e9fc..b626d00c3 100644 --- a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.adoc @@ -3,21 +3,21 @@ [,yaml] ---- --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ---- == Example with all variables modifiable [,yaml] ---- --- -rougail: # Rougail - var: val2 # A suffix variable - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + var: val2 + dynval1: + vardyn: example + dynval2: + vardyn: example ---- diff --git a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.gitlab.md index 6bf73285d..312c12d3e 100644 --- a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.gitlab.md +++ b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + dynval1: + vardyn: example + dynval2: + vardyn: example ``` @@ -14,12 +14,12 @@ rougail: # Rougail ```yaml --- -rougail: # Rougail - var: val2 # A suffix variable - dynval1: # A dynamic family - vardyn: example # A dynamic variable - dynval2: # A dynamic family - vardyn: example # A dynamic variable +rougail: + var: val2 + dynval1: + vardyn: example + dynval2: + vardyn: example ``` diff --git a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.html b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.html index e90c3567a..d29538d82 100644 --- a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.html +++ b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.html @@ -1,14 +1,14 @@

Example with mandatory variables not filled in

-
rougail:                      # Rougail
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable

Example with all variables modifiable

+
rougail:
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example

Example with all variables modifiable

-
rougail:                      # Rougail
-  var: val2                   # A suffix variable
-  dynval1:                    # A dynamic family
-    vardyn: example           # A dynamic variable
-  dynval2:                    # A dynamic family
-    vardyn: example           # A dynamic variable
\ No newline at end of file +
rougail:
+  var: val2
+  dynval1:
+    vardyn: example
+  dynval2:
+    vardyn: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.sh index 88e5f2834..ca0c634c1 100644 --- a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.sh @@ -1,25 +1,19 @@ - - Example with mandatory variables not filled in - ---  -rougail: # Rougail  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  - - +rougail:  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  Example with all variables modifiable - ---  -rougail: # Rougail  - var: val2 # A suffix variable  - dynval1: # A dynamic family  - vardyn: example # A dynamic variable  - dynval2: # A dynamic family  - vardyn: example # A dynamic variable  +rougail:  + var: val2  + dynval1:  + vardyn: example  + dynval2:  + vardyn: example  diff --git a/tests/results/test_namespace_examples/68_0family_leadership_mode.adoc b/tests/results/test_namespace_examples/68_0family_leadership_mode.adoc index 7cea614a2..c5accce47 100644 --- a/tests/results/test_namespace_examples/68_0family_leadership_mode.adoc +++ b/tests/results/test_namespace_examples/68_0family_leadership_mode.adoc @@ -3,9 +3,9 @@ [,yaml] ---- --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +rougail: + leader: + - leader: example + follower1: example + follower2: example ---- diff --git a/tests/results/test_namespace_examples/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_examples/68_0family_leadership_mode.gitlab.md index f142ffe8a..1ce9886ab 100644 --- a/tests/results/test_namespace_examples/68_0family_leadership_mode.gitlab.md +++ b/tests/results/test_namespace_examples/68_0family_leadership_mode.gitlab.md @@ -2,11 +2,11 @@ ```yaml --- -rougail: # Rougail - leader: # A leadership - - leader: example # A leader - follower1: example # A follower1 - follower2: example # A follower2 +rougail: + leader: + - leader: example + follower1: example + follower2: example ``` diff --git a/tests/results/test_namespace_examples/68_0family_leadership_mode.html b/tests/results/test_namespace_examples/68_0family_leadership_mode.html index 60e1eb700..196c68786 100644 --- a/tests/results/test_namespace_examples/68_0family_leadership_mode.html +++ b/tests/results/test_namespace_examples/68_0family_leadership_mode.html @@ -1,7 +1,7 @@

Example with all variables modifiable

-
rougail:                      # Rougail
-  leader:                     # A leadership
-    - leader: example         # A leader
-      follower1: example      # A follower1
-      follower2: example      # A follower2
\ No newline at end of file +
rougail:
+  leader:
+    - leader: example
+      follower1: example
+      follower2: example
\ No newline at end of file diff --git a/tests/results/test_namespace_examples/68_0family_leadership_mode.sh b/tests/results/test_namespace_examples/68_0family_leadership_mode.sh index 2b2f813d8..19c60803f 100644 --- a/tests/results/test_namespace_examples/68_0family_leadership_mode.sh +++ b/tests/results/test_namespace_examples/68_0family_leadership_mode.sh @@ -1,12 +1,9 @@ - - Example with all variables modifiable - ---  -rougail: # Rougail  - leader: # A leadership  - - leader: example # A leader  - follower1: example # A follower1  - follower2: example # A follower2  +rougail:  + leader:  + - leader: example  + follower1: example  + follower2: example  diff --git a/tests/results/test_namespace_examples_comment/00_0version_underscore.sh b/tests/results/test_namespace_examples_comment/00_0version_underscore.sh index d0bcc6730..df86394e1 100644 --- a/tests/results/test_namespace_examples_comment/00_0version_underscore.sh +++ b/tests/results/test_namespace_examples_comment/00_0version_underscore.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   version: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   version: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_1empty_variable.sh b/tests/results/test_namespace_examples_comment/00_1empty_variable.sh index 2d0635100..e8b213814 100644 --- a/tests/results/test_namespace_examples_comment/00_1empty_variable.sh +++ b/tests/results/test_namespace_examples_comment/00_1empty_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   empty: example  - - Example with all variables modifiable - ---  rougail: # Rougail   empty: example  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated.sh index e727e2fe9..3afe8b85c 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_multi.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_multi.sh index 24dc7531e..39ab313d0 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_multi.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_params_permissive.sh index 4346814b0..e949eca00 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_params_permissive.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var2: a_value # A second variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable.sh index 332a521c7..6c6b00db1 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: # A first variable   - example.net  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description.sh index f73e92b95..854667e2d 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description_multi_line.sh index a03065494..ba85ef135 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_description_multi_line.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A first variable   var3: example # A new variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_transitive.sh index 332a521c7..6c6b00db1 100644 --- a/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_namespace_examples_comment/00_2default_calculated_variable_transitive.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: # A first variable   - example.net  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_4load_subfolder.sh b/tests/results/test_namespace_examples_comment/00_4load_subfolder.sh index 9382c2473..2d692743c 100644 --- a/tests/results/test_namespace_examples_comment/00_4load_subfolder.sh +++ b/tests/results/test_namespace_examples_comment/00_4load_subfolder.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A variable   var2: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_5load_notype.sh b/tests/results/test_namespace_examples_comment/00_5load_notype.sh index e143e6970..97b35eca1 100644 --- a/tests/results/test_namespace_examples_comment/00_5load_notype.sh +++ b/tests/results/test_namespace_examples_comment/00_5load_notype.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   without_type: non # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_6boolean.sh b/tests/results/test_namespace_examples_comment/00_6boolean.sh index c5e490be5..77c788bff 100644 --- a/tests/results/test_namespace_examples_comment/00_6boolean.sh +++ b/tests/results/test_namespace_examples_comment/00_6boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: true # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_examples_comment/00_6boolean_no_mandatory.sh index 20e7056cb..089fe53fa 100644 --- a/tests/results/test_namespace_examples_comment/00_6boolean_no_mandatory.sh +++ b/tests/results/test_namespace_examples_comment/00_6boolean_no_mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: true # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice.sh b/tests/results/test_namespace_examples_comment/00_6choice.sh index 0b23b3c43..69d742137 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: a_choice # The first variable   var2: a_choice # The second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: a_choice # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice_calculation.sh b/tests/results/test_namespace_examples_comment/00_6choice_calculation.sh index b89e54313..79855aa86 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice_calculation.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: 9 # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice_link.sh b/tests/results/test_namespace_examples_comment/00_6choice_link.sh index be2cbe189..0eb2e0a31 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice_link.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice_link.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: a_choice # The first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: a_choice # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice_variable.sh b/tests/results/test_namespace_examples_comment/00_6choice_variable.sh index 5f1bbd56b..44470d510 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice_variable.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice_variable_link.sh b/tests/results/test_namespace_examples_comment/00_6choice_variable_link.sh index 2faa1167c..99c33a79f 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice_variable_link.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice_variable_link.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/00_6choice_variable_link2.sh b/tests/results/test_namespace_examples_comment/00_6choice_variable_link2.sh index 984bfd840..278cd3415 100644 --- a/tests/results/test_namespace_examples_comment/00_6choice_variable_link2.sh +++ b/tests/results/test_namespace_examples_comment/00_6choice_variable_link2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/00_6custom.sh b/tests/results/test_namespace_examples_comment/00_6custom.sh index 9ae732d1d..eb5f2aaf6 100644 --- a/tests/results/test_namespace_examples_comment/00_6custom.sh +++ b/tests/results/test_namespace_examples_comment/00_6custom.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   custom1: xxx # The first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   custom1: xxx # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6domainname.sh b/tests/results/test_namespace_examples_comment/00_6domainname.sh index 0c20ac784..e754fefc3 100644 --- a/tests/results/test_namespace_examples_comment/00_6domainname.sh +++ b/tests/results/test_namespace_examples_comment/00_6domainname.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: my.domain.name # A domain name variable  diff --git a/tests/results/test_namespace_examples_comment/00_6domainname_params.sh b/tests/results/test_namespace_examples_comment/00_6domainname_params.sh index 0c20ac784..e754fefc3 100644 --- a/tests/results/test_namespace_examples_comment/00_6domainname_params.sh +++ b/tests/results/test_namespace_examples_comment/00_6domainname_params.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: my.domain.name # A domain name variable  diff --git a/tests/results/test_namespace_examples_comment/00_6float.sh b/tests/results/test_namespace_examples_comment/00_6float.sh index c8a36d4df..54dbcf394 100644 --- a/tests/results/test_namespace_examples_comment/00_6float.sh +++ b/tests/results/test_namespace_examples_comment/00_6float.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: 0.0 # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6integer.sh b/tests/results/test_namespace_examples_comment/00_6integer.sh index f18578215..cf6014ee6 100644 --- a/tests/results/test_namespace_examples_comment/00_6integer.sh +++ b/tests/results/test_namespace_examples_comment/00_6integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: 0 # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6ip.sh b/tests/results/test_namespace_examples_comment/00_6ip.sh index 3ebcc9d98..a2b4b9f7d 100644 --- a/tests/results/test_namespace_examples_comment/00_6ip.sh +++ b/tests/results/test_namespace_examples_comment/00_6ip.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: 1.1.1.1 # An IP  diff --git a/tests/results/test_namespace_examples_comment/00_6network.sh b/tests/results/test_namespace_examples_comment/00_6network.sh index 22a5ea997..3aa38801c 100644 --- a/tests/results/test_namespace_examples_comment/00_6network.sh +++ b/tests/results/test_namespace_examples_comment/00_6network.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: 1.1.1.0 # An network  diff --git a/tests/results/test_namespace_examples_comment/00_6number.sh b/tests/results/test_namespace_examples_comment/00_6number.sh index f18578215..cf6014ee6 100644 --- a/tests/results/test_namespace_examples_comment/00_6number.sh +++ b/tests/results/test_namespace_examples_comment/00_6number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: 0 # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6port.sh b/tests/results/test_namespace_examples_comment/00_6port.sh index 4d276b018..b8a8cc354 100644 --- a/tests/results/test_namespace_examples_comment/00_6port.sh +++ b/tests/results/test_namespace_examples_comment/00_6port.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable1: '111' # A port variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable1: '111' # A port variable  diff --git a/tests/results/test_namespace_examples_comment/00_6regexp.sh b/tests/results/test_namespace_examples_comment/00_6regexp.sh index dcbf856c6..9ea38794b 100644 --- a/tests/results/test_namespace_examples_comment/00_6regexp.sh +++ b/tests/results/test_namespace_examples_comment/00_6regexp.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: '#b1b1b1' # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6regexp_link.sh b/tests/results/test_namespace_examples_comment/00_6regexp_link.sh index 02d7a5786..a39724ae4 100644 --- a/tests/results/test_namespace_examples_comment/00_6regexp_link.sh +++ b/tests/results/test_namespace_examples_comment/00_6regexp_link.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: '#b1b1b1' # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6secret.sh b/tests/results/test_namespace_examples_comment/00_6secret.sh index 4f9bce78c..5c62ec4b0 100644 --- a/tests/results/test_namespace_examples_comment/00_6secret.sh +++ b/tests/results/test_namespace_examples_comment/00_6secret.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   secret1: secrets # The first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   secret1: secrets # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6secret_param.sh b/tests/results/test_namespace_examples_comment/00_6secret_param.sh index 1deb7a1f3..0fca31166 100644 --- a/tests/results/test_namespace_examples_comment/00_6secret_param.sh +++ b/tests/results/test_namespace_examples_comment/00_6secret_param.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   secret1: secrets # The first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   secret1: secrets # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_6string.sh b/tests/results/test_namespace_examples_comment/00_6string.sh index e6288fc08..03d2bd887 100644 --- a/tests/results/test_namespace_examples_comment/00_6string.sh +++ b/tests/results/test_namespace_examples_comment/00_6string.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # The first variable   var2: example # The second variable   var3: example # The third variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_7choice_quote.sh b/tests/results/test_namespace_examples_comment/00_7choice_quote.sh index c6e279a1e..73923728f 100644 --- a/tests/results/test_namespace_examples_comment/00_7choice_quote.sh +++ b/tests/results/test_namespace_examples_comment/00_7choice_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: quote' # A choice  diff --git a/tests/results/test_namespace_examples_comment/00_7help.sh b/tests/results/test_namespace_examples_comment/00_7help.sh index 742724fd8..d112aab20 100644 --- a/tests/results/test_namespace_examples_comment/00_7help.sh +++ b/tests/results/test_namespace_examples_comment/00_7help.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # The first variable   var2: example # The second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_7help_quote.sh b/tests/results/test_namespace_examples_comment/00_7help_quote.sh index 742724fd8..d112aab20 100644 --- a/tests/results/test_namespace_examples_comment/00_7help_quote.sh +++ b/tests/results/test_namespace_examples_comment/00_7help_quote.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # The first variable   var2: example # The second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_7help_sup.sh b/tests/results/test_namespace_examples_comment/00_7help_sup.sh index f9aac15d2..ac8bebb3b 100644 --- a/tests/results/test_namespace_examples_comment/00_7help_sup.sh +++ b/tests/results/test_namespace_examples_comment/00_7help_sup.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # The first    var2: example # The second   - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # The first   diff --git a/tests/results/test_namespace_examples_comment/00_7value_doublequote.sh b/tests/results/test_namespace_examples_comment/00_7value_doublequote.sh index 9f55bfe91..d09160229 100644 --- a/tests/results/test_namespace_examples_comment/00_7value_doublequote.sh +++ b/tests/results/test_namespace_examples_comment/00_7value_doublequote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: quote" # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_7value_doublequote2.sh b/tests/results/test_namespace_examples_comment/00_7value_doublequote2.sh index 41e90f391..271141d69 100644 --- a/tests/results/test_namespace_examples_comment/00_7value_doublequote2.sh +++ b/tests/results/test_namespace_examples_comment/00_7value_doublequote2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: quote'" # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_7value_doublequote3.sh b/tests/results/test_namespace_examples_comment/00_7value_doublequote3.sh index 1ac429f76..b15e69432 100644 --- a/tests/results/test_namespace_examples_comment/00_7value_doublequote3.sh +++ b/tests/results/test_namespace_examples_comment/00_7value_doublequote3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: quote\"\' # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_7value_quote.sh b/tests/results/test_namespace_examples_comment/00_7value_quote.sh index 6fe82806f..3c99a83f1 100644 --- a/tests/results/test_namespace_examples_comment/00_7value_quote.sh +++ b/tests/results/test_namespace_examples_comment/00_7value_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: quote' # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_8calculation_information.sh b/tests/results/test_namespace_examples_comment/00_8calculation_information.sh index 2b73142aa..c183930fe 100644 --- a/tests/results/test_namespace_examples_comment/00_8calculation_information.sh +++ b/tests/results/test_namespace_examples_comment/00_8calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_8calculation_namespace.sh b/tests/results/test_namespace_examples_comment/00_8calculation_namespace.sh index 4d13b02e7..d71cb8bb5 100644 --- a/tests/results/test_namespace_examples_comment/00_8calculation_namespace.sh +++ b/tests/results/test_namespace_examples_comment/00_8calculation_namespace.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: Rougail # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_8calculation_param_namespace.sh b/tests/results/test_namespace_examples_comment/00_8calculation_param_namespace.sh index 4d13b02e7..d71cb8bb5 100644 --- a/tests/results/test_namespace_examples_comment/00_8calculation_param_namespace.sh +++ b/tests/results/test_namespace_examples_comment/00_8calculation_param_namespace.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: Rougail # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_8test.sh b/tests/results/test_namespace_examples_comment/00_8test.sh index a63bd7bb9..8e5d334cb 100644 --- a/tests/results/test_namespace_examples_comment/00_8test.sh +++ b/tests/results/test_namespace_examples_comment/00_8test.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: test # The first variable  @@ -11,11 +8,8 @@  - test1   - test2  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: test # The first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9choice_variable_multi.sh b/tests/results/test_namespace_examples_comment/00_9choice_variable_multi.sh index ce37e6e67..8241f0dcc 100644 --- a/tests/results/test_namespace_examples_comment/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace_examples_comment/00_9choice_variable_multi.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable1: # A first variable   - a_choice  - - Example with all variables modifiable - ---  rougail: # Rougail   variable1: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9choice_variables.sh b/tests/results/test_namespace_examples_comment/00_9choice_variables.sh index 20acaa148..10eee52eb 100644 --- a/tests/results/test_namespace_examples_comment/00_9choice_variables.sh +++ b/tests/results/test_namespace_examples_comment/00_9choice_variables.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   source_variable_1: val1 # The first source variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation.sh index d5ed69cfa..1daca02be 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: string_1_True_None # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_information.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_information.sh index 33414af3f..51c40daee 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_information.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_information_other_variable.sh index f73e92b95..854667e2d 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_information_other_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional.sh index 9d0779a63..88267a787 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_variable: val1  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional2.sh index 9d0779a63..88267a787 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_variable: val1  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional_default.sh index f774d4f0d..039108cc0 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_multi_optional_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_variable: val1  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_optional.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_optional.sh index fad13a810..e638b9fa2 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_optional.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_optional.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   my_calculated_variable:   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   my_calculated_variable:  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_optional_exists.sh index 6d496c2cd..74f4041ee 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_optional_exists.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_variable:  diff --git a/tests/results/test_namespace_examples_comment/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_examples_comment/00_9default_calculation_param_optional.sh index be87b523e..bd442bae6 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_calculation_param_optional.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_calculation_param_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_information_other_variable.sh b/tests/results/test_namespace_examples_comment/00_9default_information_other_variable.sh index f73e92b95..854667e2d 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_information_other_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_information_other_variable2.sh b/tests/results/test_namespace_examples_comment/00_9default_information_other_variable2.sh index f73e92b95..854667e2d 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_information_other_variable2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # A first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # A first variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_integer.sh b/tests/results/test_namespace_examples_comment/00_9default_integer.sh index b89e54313..79855aa86 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_integer.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: 9 # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9default_number.sh b/tests/results/test_namespace_examples_comment/00_9default_number.sh index b89e54313..79855aa86 100644 --- a/tests/results/test_namespace_examples_comment/00_9default_number.sh +++ b/tests/results/test_namespace_examples_comment/00_9default_number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: 9 # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9extra.sh b/tests/results/test_namespace_examples_comment/00_9extra.sh index 88a9a7ac2..45285f990 100644 --- a/tests/results/test_namespace_examples_comment/00_9extra.sh +++ b/tests/results/test_namespace_examples_comment/00_9extra.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: rougail # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9extra_calculation.sh b/tests/results/test_namespace_examples_comment/00_9extra_calculation.sh index 8be42ef3e..8bda3a7a0 100644 --- a/tests/results/test_namespace_examples_comment/00_9extra_calculation.sh +++ b/tests/results/test_namespace_examples_comment/00_9extra_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: value # A variable  diff --git a/tests/results/test_namespace_examples_comment/00_9extra_ouside.sh b/tests/results/test_namespace_examples_comment/00_9extra_ouside.sh index cc2faa17a..d17969d20 100644 --- a/tests/results/test_namespace_examples_comment/00_9extra_ouside.sh +++ b/tests/results/test_namespace_examples_comment/00_9extra_ouside.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: value in extra # A variable  diff --git a/tests/results/test_namespace_examples_comment/01_6boolean_multi.sh b/tests/results/test_namespace_examples_comment/01_6boolean_multi.sh index fb381d789..ece0c9f9d 100644 --- a/tests/results/test_namespace_examples_comment/01_6boolean_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_6boolean_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The first variable  diff --git a/tests/results/test_namespace_examples_comment/01_6custom_multi.sh b/tests/results/test_namespace_examples_comment/01_6custom_multi.sh index 55e3b07e1..ede08ed5a 100644 --- a/tests/results/test_namespace_examples_comment/01_6custom_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_6custom_multi.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   custom1: # A first custom variable   - xxx  - - Example with all variables modifiable - ---  rougail: # Rougail   custom1: # A first custom variable  diff --git a/tests/results/test_namespace_examples_comment/01_6float_multi.sh b/tests/results/test_namespace_examples_comment/01_6float_multi.sh index 6b6f76f51..b47417f7a 100644 --- a/tests/results/test_namespace_examples_comment/01_6float_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_6float_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The first variable  diff --git a/tests/results/test_namespace_examples_comment/01_6integer_multi.sh b/tests/results/test_namespace_examples_comment/01_6integer_multi.sh index 89fce4841..8970898fd 100644 --- a/tests/results/test_namespace_examples_comment/01_6integer_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_6integer_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The first variable  diff --git a/tests/results/test_namespace_examples_comment/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_examples_comment/01_6integer_multi_mandatory.sh index 88de9fdcd..c1fe0e39c 100644 --- a/tests/results/test_namespace_examples_comment/01_6integer_multi_mandatory.sh +++ b/tests/results/test_namespace_examples_comment/01_6integer_multi_mandatory.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: # The first variable   - 42  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # The first variable  diff --git a/tests/results/test_namespace_examples_comment/01_6string_empty.sh b/tests/results/test_namespace_examples_comment/01_6string_empty.sh index b76c31c89..de98a5da9 100644 --- a/tests/results/test_namespace_examples_comment/01_6string_empty.sh +++ b/tests/results/test_namespace_examples_comment/01_6string_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The second variable  diff --git a/tests/results/test_namespace_examples_comment/01_6string_multi.sh b/tests/results/test_namespace_examples_comment/01_6string_multi.sh index 50a9ca68b..85aa425b7 100644 --- a/tests/results/test_namespace_examples_comment/01_6string_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_6string_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: # The first variable  @@ -12,11 +9,8 @@  var3: # The third variable   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The first variable  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 index 6cc248e98..cc03929cb 100644 --- a/tests/results/test_namespace_examples_comment/01_6string_multi_length.sh +++ b/tests/results/test_namespace_examples_comment/01_6string_multi_length.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # The variable  diff --git a/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote.sh b/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote.sh index 5ad4cb228..e86dfbe31 100644 --- a/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote.sh +++ b/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote2.sh index 2ee78fb28..8c6c331b5 100644 --- a/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote2.sh +++ b/tests/results/test_namespace_examples_comment/01_7value_multi_doublequote2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/01_7value_multi_quote.sh b/tests/results/test_namespace_examples_comment/01_7value_multi_quote.sh index 852613b01..f3e7d84f5 100644 --- a/tests/results/test_namespace_examples_comment/01_7value_multi_quote.sh +++ b/tests/results/test_namespace_examples_comment/01_7value_multi_quote.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/01_8calculation_information_multi.sh b/tests/results/test_namespace_examples_comment/01_8calculation_information_multi.sh index 885fe46b4..9055d6845 100644 --- a/tests/results/test_namespace_examples_comment/01_8calculation_information_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_8calculation_information_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/01_9choice_variable_multi.sh b/tests/results/test_namespace_examples_comment/01_9choice_variable_multi.sh index e2c17c4c3..6de1739b9 100644 --- a/tests/results/test_namespace_examples_comment/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_examples_comment/01_9choice_variable_multi.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable2: a_choice # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable1: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/01_9choice_variable_optional.sh b/tests/results/test_namespace_examples_comment/01_9choice_variable_optional.sh index ce8cb67a2..c031fba07 100644 --- a/tests/results/test_namespace_examples_comment/01_9choice_variable_optional.sh +++ b/tests/results/test_namespace_examples_comment/01_9choice_variable_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: c # A variable  diff --git a/tests/results/test_namespace_examples_comment/02_0tags.sh b/tests/results/test_namespace_examples_comment/02_0tags.sh index 742724fd8..d112aab20 100644 --- a/tests/results/test_namespace_examples_comment/02_0tags.sh +++ b/tests/results/test_namespace_examples_comment/02_0tags.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var1: example # The first variable   var2: example # The second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: example # The first variable  diff --git a/tests/results/test_namespace_examples_comment/04_0type_param.sh b/tests/results/test_namespace_examples_comment/04_0type_param.sh index 98fd352c4..672b3f89b 100644 --- a/tests/results/test_namespace_examples_comment/04_0type_param.sh +++ b/tests/results/test_namespace_examples_comment/04_0type_param.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   int: 10 # A limited number  diff --git a/tests/results/test_namespace_examples_comment/04_0type_param_integer.sh b/tests/results/test_namespace_examples_comment/04_0type_param_integer.sh index 9e0e91929..2ece2eeb0 100644 --- a/tests/results/test_namespace_examples_comment/04_0type_param_integer.sh +++ b/tests/results/test_namespace_examples_comment/04_0type_param_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   int: 10 # A limited integer  diff --git a/tests/results/test_namespace_examples_comment/04_1auto_save.sh b/tests/results/test_namespace_examples_comment/04_1auto_save.sh index 24363d28f..d40626be6 100644 --- a/tests/results/test_namespace_examples_comment/04_1auto_save.sh +++ b/tests/results/test_namespace_examples_comment/04_1auto_save.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: no # An auto save variable  diff --git a/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated.sh index be87b523e..bd442bae6 100644 --- a/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated.sh +++ b/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated_hidden.sh index 9d07ab459..b22724506 100644 --- a/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated_hidden.sh +++ b/tests/results/test_namespace_examples_comment/04_1auto_save_and_calculated_hidden.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden.sh index 1bd93c9cd..27fea1656 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: value # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_2.sh index 95e44c47f..1de1910a5 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_2.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: value # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_3.sh index fa48539a3..82f98958d 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var3: value # A third variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_4.sh index 6ef1858c9..f18742202 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_4.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var2: example # A second variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_5.sh index a2ac77025..b3e920445 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_5.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var3: example # A third variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: value # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_6.sh index a2ac77025..b3e920445 100644 --- a/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_examples_comment/04_1default_calculation_hidden_6.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var3: example # A third variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: value # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation.sh index 396f1ac5a..cacbd9788 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable1: example # A first variable   variable2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A conditional variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_boolean.sh index 857c30839..9a07ebeb2 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_boolean.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable1: example # A first variable   variable2: example # A seconde variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A conditional variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_default.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_default.sh index c4390b175..dec08d594 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_default.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_multi.sh index 1b43b3161..6ca371ab1 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_multi.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable1: # A first variable  @@ -10,11 +7,8 @@  variable2: # A second variable   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A conditional variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional.sh index c14781887..194893bca 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional_default.sh index c9f934e63..87b96204d 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_optional_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: false # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable.sh index d9e673587..f0ef02494 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: false # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable10.sh index 73dd9c246..b3e26ba63 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable10.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable10.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: true # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable2.sh index 73dd9c246..b3e26ba63 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable2.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: true # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable3.sh index 73d650719..0bb491c3e 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable3.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable3.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: yes # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable4.sh index 73d650719..0bb491c3e 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable4.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: yes # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable5.sh index f577170b1..42c0917c1 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable5.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable6.sh index f577170b1..42c0917c1 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable6.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable7.sh index d9e673587..f0ef02494 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable7.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: false # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable9.sh index f577170b1..42c0917c1 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable9.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable_multi.sh index edba96e3a..116738487 100644 --- a/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_namespace_examples_comment/04_5disabled_calculation_variable_multi.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: # A variable   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: false # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5hidden_calculation.sh b/tests/results/test_namespace_examples_comment/04_5hidden_calculation.sh index ede58bcb5..2ca8afe51 100644 --- a/tests/results/test_namespace_examples_comment/04_5hidden_calculation.sh +++ b/tests/results/test_namespace_examples_comment/04_5hidden_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # The condition  diff --git a/tests/results/test_namespace_examples_comment/04_5hidden_calculation2.sh b/tests/results/test_namespace_examples_comment/04_5hidden_calculation2.sh index c4390b175..dec08d594 100644 --- a/tests/results/test_namespace_examples_comment/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_examples_comment/04_5hidden_calculation2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_examples_comment/04_5hidden_calculation_default_calculation.sh index c4390b175..dec08d594 100644 --- a/tests/results/test_namespace_examples_comment/04_5hidden_calculation_default_calculation.sh +++ b/tests/results/test_namespace_examples_comment/04_5hidden_calculation_default_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/04_5validators.sh b/tests/results/test_namespace_examples_comment/04_5validators.sh index e166bfafb..f6bf12a0e 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   int: 42 # An integer  - - Example with all variables modifiable - ---  rougail: # Rougail   int: 42 # An integer  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_differ.sh b/tests/results/test_namespace_examples_comment/04_5validators_differ.sh index c852c7da8..6b78e284f 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_differ.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_differ.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: another_value # A first variable  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_multi.sh b/tests/results/test_namespace_examples_comment/04_5validators_multi.sh index 437cf73e7..dbfa54767 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_multi.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_multi2.sh b/tests/results/test_namespace_examples_comment/04_5validators_multi2.sh index 516d3595a..eb4cd068d 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_multi2.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_multi2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_multi3.sh b/tests/results/test_namespace_examples_comment/04_5validators_multi3.sh index 76e3cfd65..a22c7fe13 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_multi3.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_multi3.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A second variable  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_warnings.sh b/tests/results/test_namespace_examples_comment/04_5validators_warnings.sh index b48730f29..edf4e033b 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_warnings.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_warnings.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   int: 1000 # An integer  diff --git a/tests/results/test_namespace_examples_comment/04_5validators_warnings_all.sh b/tests/results/test_namespace_examples_comment/04_5validators_warnings_all.sh index b48730f29..edf4e033b 100644 --- a/tests/results/test_namespace_examples_comment/04_5validators_warnings_all.sh +++ b/tests/results/test_namespace_examples_comment/04_5validators_warnings_all.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   int: 1000 # An integer  diff --git a/tests/results/test_namespace_examples_comment/05_0multi_not_uniq.sh b/tests/results/test_namespace_examples_comment/05_0multi_not_uniq.sh index 2d8e3b0f1..18d4ad57f 100644 --- a/tests/results/test_namespace_examples_comment/05_0multi_not_uniq.sh +++ b/tests/results/test_namespace_examples_comment/05_0multi_not_uniq.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A variable  diff --git a/tests/results/test_namespace_examples_comment/05_0multi_uniq.sh b/tests/results/test_namespace_examples_comment/05_0multi_uniq.sh index a0763368b..b7f627e67 100644 --- a/tests/results/test_namespace_examples_comment/05_0multi_uniq.sh +++ b/tests/results/test_namespace_examples_comment/05_0multi_uniq.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/12_1auto_save_expert.sh b/tests/results/test_namespace_examples_comment/12_1auto_save_expert.sh index 0e92b5411..c064a92c1 100644 --- a/tests/results/test_namespace_examples_comment/12_1auto_save_expert.sh +++ b/tests/results/test_namespace_examples_comment/12_1auto_save_expert.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: no # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_0redefine_description.sh b/tests/results/test_namespace_examples_comment/16_0redefine_description.sh index 313e3a7d4..55cb23c4f 100644 --- a/tests/results/test_namespace_examples_comment/16_0redefine_description.sh +++ b/tests/results/test_namespace_examples_comment/16_0redefine_description.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: example # Redefined  - - Example with all variables modifiable - ---  rougail: # Rougail   var: example # Redefined  diff --git a/tests/results/test_namespace_examples_comment/16_2family_redefine_calculation.sh b/tests/results/test_namespace_examples_comment/16_2family_redefine_calculation.sh index ca1cb1d9f..e26673ab2 100644 --- a/tests/results/test_namespace_examples_comment/16_2family_redefine_calculation.sh +++ b/tests/results/test_namespace_examples_comment/16_2family_redefine_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # family   var1: example  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # family  diff --git a/tests/results/test_namespace_examples_comment/16_3family_empty_at_ends.sh b/tests/results/test_namespace_examples_comment/16_3family_empty_at_ends.sh index ca1cb1d9f..e26673ab2 100644 --- a/tests/results/test_namespace_examples_comment/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_examples_comment/16_3family_empty_at_ends.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # family   var1: example  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # family  diff --git a/tests/results/test_namespace_examples_comment/16_5exists_nonexists.sh b/tests/results/test_namespace_examples_comment/16_5exists_nonexists.sh index b8a63ca67..a548a049e 100644 --- a/tests/results/test_namespace_examples_comment/16_5exists_nonexists.sh +++ b/tests/results/test_namespace_examples_comment/16_5exists_nonexists.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_calculation.sh b/tests/results/test_namespace_examples_comment/16_5redefine_calculation.sh index be1bf3b26..d79d63a54 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_calculation.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: yes # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_choice.sh b/tests/results/test_namespace_examples_comment/16_5redefine_choice.sh index a8a85abb5..9283dfbae 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_choice.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_choice.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: a_choice # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: a_choice # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_default.sh b/tests/results/test_namespace_examples_comment/16_5redefine_default.sh index be1bf3b26..d79d63a54 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_default.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_default.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: yes # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_default_calculation.sh b/tests/results/test_namespace_examples_comment/16_5redefine_default_calculation.sh index f577170b1..42c0917c1 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_default_calculation.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_family.sh b/tests/results/test_namespace_examples_comment/16_5redefine_family.sh index 1fdf0d136..7297ffc4e 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_family.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_family.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # New description   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # New description  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_help.sh b/tests/results/test_namespace_examples_comment/16_5redefine_help.sh index 64cadf622..3b9b9583d 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_help.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_help.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # A family   variable: example # Redefine help  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_multi.sh b/tests/results/test_namespace_examples_comment/16_5redefine_multi.sh index a0763368b..b7f627e67 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_multi.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   variable: # A variable  diff --git a/tests/results/test_namespace_examples_comment/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_examples_comment/16_5redefine_remove_disable_calculation.sh index c8b89e506..d37ca4a6b 100644 --- a/tests/results/test_namespace_examples_comment/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_examples_comment/16_5redefine_remove_disable_calculation.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/16_5test_redefine.sh b/tests/results/test_namespace_examples_comment/16_5test_redefine.sh index 0639a666b..96f87d061 100644 --- a/tests/results/test_namespace_examples_comment/16_5test_redefine.sh +++ b/tests/results/test_namespace_examples_comment/16_5test_redefine.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var3: example # A third variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: test1 # A first variable  diff --git a/tests/results/test_namespace_examples_comment/16_6choice_redefine.sh b/tests/results/test_namespace_examples_comment/16_6choice_redefine.sh index 0b532893c..e96f2d39f 100644 --- a/tests/results/test_namespace_examples_comment/16_6choice_redefine.sh +++ b/tests/results/test_namespace_examples_comment/16_6choice_redefine.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: c # A choice  diff --git a/tests/results/test_namespace_examples_comment/16_6exists_redefine_family.sh b/tests/results/test_namespace_examples_comment/16_6exists_redefine_family.sh index b1f50f8b3..7f16d0808 100644 --- a/tests/results/test_namespace_examples_comment/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_examples_comment/16_6exists_redefine_family.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family1: # New description  @@ -10,11 +7,8 @@  family2: # A second family   variable2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   family1: # New description  diff --git a/tests/results/test_namespace_examples_comment/16exists_exists.sh b/tests/results/test_namespace_examples_comment/16exists_exists.sh index acfdda220..680eeb0a5 100644 --- a/tests/results/test_namespace_examples_comment/16exists_exists.sh +++ b/tests/results/test_namespace_examples_comment/16exists_exists.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: example # Description  - - Example with all variables modifiable - ---  rougail: # Rougail   var: example # Description  diff --git a/tests/results/test_namespace_examples_comment/20_0family_append.sh b/tests/results/test_namespace_examples_comment/20_0family_append.sh index a7896b7ff..527653daf 100644 --- a/tests/results/test_namespace_examples_comment/20_0family_append.sh +++ b/tests/results/test_namespace_examples_comment/20_0family_append.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # A family   var1: example # The first variable   var2: example # The second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/20_0multi_family.sh b/tests/results/test_namespace_examples_comment/20_0multi_family.sh index 5d9dc0fe9..371e0c6ac 100644 --- a/tests/results/test_namespace_examples_comment/20_0multi_family.sh +++ b/tests/results/test_namespace_examples_comment/20_0multi_family.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/20_0multi_family_basic.sh b/tests/results/test_namespace_examples_comment/20_0multi_family_basic.sh index 85e280923..1b782fbed 100644 --- a/tests/results/test_namespace_examples_comment/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_examples_comment/20_0multi_family_basic.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # A family   subfamily: # A sub family   variable: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/20_0multi_family_expert.sh b/tests/results/test_namespace_examples_comment/20_0multi_family_expert.sh index 5d9dc0fe9..371e0c6ac 100644 --- a/tests/results/test_namespace_examples_comment/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_examples_comment/20_0multi_family_expert.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/20_0multi_family_order.sh b/tests/results/test_namespace_examples_comment/20_0multi_family_order.sh index 4fdbe4239..a209d394d 100644 --- a/tests/results/test_namespace_examples_comment/20_0multi_family_order.sh +++ b/tests/results/test_namespace_examples_comment/20_0multi_family_order.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   variable: example # A variable  @@ -12,11 +9,8 @@  variable: example # A variable   variable2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   variable: example # A variable  diff --git a/tests/results/test_namespace_examples_comment/20_0validators_differ_redefine.sh b/tests/results/test_namespace_examples_comment/20_0validators_differ_redefine.sh index 8904272fa..cf3f621e9 100644 --- a/tests/results/test_namespace_examples_comment/20_0validators_differ_redefine.sh +++ b/tests/results/test_namespace_examples_comment/20_0validators_differ_redefine.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: no # A first variable  diff --git a/tests/results/test_namespace_examples_comment/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_examples_comment/20_2family_looks_like_dynamic.sh index 3b1960d3e..01d292f74 100644 --- a/tests/results/test_namespace_examples_comment/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_namespace_examples_comment/20_2family_looks_like_dynamic.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_family: # my_family  diff --git a/tests/results/test_namespace_examples_comment/20_2family_looks_like_variable.sh b/tests/results/test_namespace_examples_comment/20_2family_looks_like_variable.sh index d4db7ae7e..87f7e0cb5 100644 --- a/tests/results/test_namespace_examples_comment/20_2family_looks_like_variable.sh +++ b/tests/results/test_namespace_examples_comment/20_2family_looks_like_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   my_family: # my_family  diff --git a/tests/results/test_namespace_examples_comment/20_9default_information_parent.sh b/tests/results/test_namespace_examples_comment/20_9default_information_parent.sh index 19e10dabc..59245b6c7 100644 --- a/tests/results/test_namespace_examples_comment/20_9default_information_parent.sh +++ b/tests/results/test_namespace_examples_comment/20_9default_information_parent.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # family   var1: example # A first variable  - - Example with all variables modifiable - ---  rougail: # Rougail   family: # family  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition.sh index c1be8536d..7acfa24ff 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # Possibly hidden family   var1: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # The variable use has condition  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_boolean.sh index 79c98afa3..3a42eddba 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_boolean.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: false # A conditional variable  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_sub_family.sh index 39443f2b4..e098a47ed 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_sub_family.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # Possibly hidden family   subfamily: # subfamily   var1: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # The variable use has condition  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_variable_sub_family.sh index 7a7a7f0e4..3a62a3f95 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_variable_sub_family.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: true # The variable use has condition  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_with_variable.sh index cd836f77f..cc189d0c5 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_condition_with_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition1: false # A first conditional variable  diff --git a/tests/results/test_namespace_examples_comment/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_examples_comment/24_0family_hidden_param_condition_sub_family.sh index ddd20714a..3d0ed5ac9 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_hidden_param_condition_sub_family.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   family: # Possibly hidden family   sub_family: # A subfamily   var1: example # A variable  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # The variable use has condition  diff --git a/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition.sh b/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition.sh index 5276c2162..be80166d2 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition_variable.sh index e3dc9b7e1..1c464a5b0 100644 --- a/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_examples_comment/24_0family_mandatory_condition_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: true # A condition  diff --git a/tests/results/test_namespace_examples_comment/24_7validators_variable_optional.sh b/tests/results/test_namespace_examples_comment/24_7validators_variable_optional.sh index 5dcf874d0..93c985b29 100644 --- a/tests/results/test_namespace_examples_comment/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_examples_comment/24_7validators_variable_optional.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   general: # A family   int: 5 # A first integer  - - Example with all variables modifiable - ---  rougail: # Rougail   general: # A family  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership.sh b/tests/results/test_namespace_examples_comment/40_0leadership.sh index 6b34fa03a..06ed504e2 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leader: # A leadership  @@ -10,11 +7,8 @@  follower1: example # A follower   follower2: example # An other follower  - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_diff_name.sh b/tests/results/test_namespace_examples_comment/40_0leadership_diff_name.sh index 9360453b6..dfce35329 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_diff_name.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_diff_name.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leadership: # A leadership  @@ -10,11 +7,8 @@  follower1: example # A follower   follower2: example # An other follower  - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_calculation.sh index 8a3257c09..8e27f8120 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_calculation.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leader: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti.sh index 92dc0713d..10fb26e3e 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti_calculation.sh index 04a9b423b..aa87c27c1 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti_calculation.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_submulti_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_value.sh index fdf03f74f..2779a277f 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_value.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_follower_default_value.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_leader_follower.sh b/tests/results/test_namespace_examples_comment/40_0leadership_leader_follower.sh index 587e3b68d..ec5abceb4 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_leader_follower.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_leader_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_examples_comment/40_0leadership_leader_not_multi.sh index 1b33651a4..6b123ac71 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_leader_not_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   general1: # general1  @@ -11,11 +8,8 @@  follower1: example # Follower1   follower2: example # Follower2  - - Example with all variables modifiable - ---  rougail: # Rougail   general: # general  diff --git a/tests/results/test_namespace_examples_comment/40_0leadership_reduce.sh b/tests/results/test_namespace_examples_comment/40_0leadership_reduce.sh index 16d97fea4..abf713f84 100644 --- a/tests/results/test_namespace_examples_comment/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_examples_comment/40_0leadership_reduce.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_1leadership_append_follower.sh b/tests/results/test_namespace_examples_comment/40_1leadership_append_follower.sh index a949948c6..7807acc26 100644 --- a/tests/results/test_namespace_examples_comment/40_1leadership_append_follower.sh +++ b/tests/results/test_namespace_examples_comment/40_1leadership_append_follower.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leader: # A leadership  @@ -11,11 +8,8 @@  follower2: example # The follower2   follower3: example # The follower3  - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index.sh b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index.sh index 001ba6e38..4437a49b0 100644 --- a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index.sh +++ b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index_2.sh index 001ba6e38..4437a49b0 100644 --- a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_index_2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_param_index.sh index 18c3d8af1..503414460 100644 --- a/tests/results/test_namespace_examples_comment/40_2leadership_calculation_param_index.sh +++ b/tests/results/test_namespace_examples_comment/40_2leadership_calculation_param_index.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # Leadership  diff --git a/tests/results/test_namespace_examples_comment/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_examples_comment/40_2leadership_leader_calculation.sh index 47d2f6f5a..d36dad66e 100644 --- a/tests/results/test_namespace_examples_comment/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_examples_comment/40_2leadership_leader_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi.sh b/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi.sh index e131ee4d5..a4660033e 100644 --- a/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leadership: # A leadership  @@ -10,11 +7,8 @@  follower1: # The first follower   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi_no_mandatory.sh index 719dd9c64..0a361b834 100644 --- a/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_namespace_examples_comment/40_6leadership_follower_multi_no_mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_boolean.sh b/tests/results/test_namespace_examples_comment/40_8calculation_boolean.sh index e3bb8dfc2..562841f37 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_boolean.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   bool: false # A boolean variable  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_examples_comment/40_8calculation_boolean_return_none.sh index 0120ad973..5640358fe 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_boolean_return_none.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: yes # A first variable  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_integer.sh b/tests/results/test_namespace_examples_comment/40_8calculation_integer.sh index c08b70d5a..63cdcb901 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_integer.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_integer.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   bool: false # A boolean variable  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable.sh b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable.sh index 952988df1..57ed9efb3 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A first variable  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent.sh index d874212a8..28fb18ed7 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: no # A variable  diff --git a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent2.sh index 74054f37f..821a8fa5d 100644 --- a/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent2.sh +++ b/tests/results/test_namespace_examples_comment/40_8calculation_multi_variable_parent2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   fam1: # First family  diff --git a/tests/results/test_namespace_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh index 54ec041da..ece1e6337 100644 --- a/tests/results/test_namespace_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_namespace_examples_comment/40_9calculation_variable_leader_follower_multi_inside.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-first.sh index c52ecc5a4..12d81101e 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-first.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-last.sh index c52ecc5a4..12d81101e 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-last.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh index 3a3c93e44..226bbdc5e 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # leader  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower.sh index aaca86951..be61e9c27 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-first.sh index 33dca8ce2..d0e3d040d 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-first.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-last.sh index dd507a1ae..764aaeafa 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader-last.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader.sh index 175af80c3..18862b070 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-outside-leader.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable.sh index 4383b13bf..f7ab40137 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   calculate: # A calculated variable  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower.sh index 411191179..cf008f9e0 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership_1: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh index 13e8b188d..74edc1a88 100644 --- a/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_examples_comment/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership_1: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/41_0choice_leader.sh b/tests/results/test_namespace_examples_comment/41_0choice_leader.sh index 6fe90013c..c5bed6c97 100644 --- a/tests/results/test_namespace_examples_comment/41_0choice_leader.sh +++ b/tests/results/test_namespace_examples_comment/41_0choice_leader.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # The leadership  diff --git a/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower.sh index e45da8339..e7619873a 100644 --- a/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: true # A condition  diff --git a/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower_index.sh index 982a6bbb3..4b5800811 100644 --- a/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_namespace_examples_comment/44_4disabled_calcultion_follower_index.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leadership: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/44_4leadership_mandatory.sh b/tests/results/test_namespace_examples_comment/44_4leadership_mandatory.sh index 9a977b237..6b2bc6714 100644 --- a/tests/results/test_namespace_examples_comment/44_4leadership_mandatory.sh +++ b/tests/results/test_namespace_examples_comment/44_4leadership_mandatory.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leader: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_examples_comment/44_4leadership_mandatory_follower.sh index 989ef5fd3..cec9ae149 100644 --- a/tests/results/test_namespace_examples_comment/44_4leadership_mandatory_follower.sh +++ b/tests/results/test_namespace_examples_comment/44_4leadership_mandatory_follower.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_examples_comment/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_examples_comment/44_5leadership_leader_hidden_calculation.sh index 294450044..73265cfea 100644 --- a/tests/results/test_namespace_examples_comment/44_5leadership_leader_hidden_calculation.sh +++ b/tests/results/test_namespace_examples_comment/44_5leadership_leader_hidden_calculation.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   condition: no # A condition  diff --git a/tests/results/test_namespace_examples_comment/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_examples_comment/44_6leadership_follower_disabled_calculation.sh index 250b228be..fbb3603b3 100644 --- a/tests/results/test_namespace_examples_comment/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_namespace_examples_comment/44_6leadership_follower_disabled_calculation.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   leader: # A leadership   - leader: example # A leader   follower: example # A follower  - - Example with all variables modifiable - ---  rougail: # Rougail   condition: yes # A condition  diff --git a/tests/results/test_namespace_examples_comment/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_examples_comment/44_9calculated_default_leadership_leader.sh index ea4586c71..632e84939 100644 --- a/tests/results/test_namespace_examples_comment/44_9calculated_default_leadership_leader.sh +++ b/tests/results/test_namespace_examples_comment/44_9calculated_default_leadership_leader.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # Leader  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic.sh index 56f2eef4f..3264f2244 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0.sh index 021f36af9..01c11d2fe 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_empty.sh index 021f36af9..01c11d2fe 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type.sh index cd1b76869..83dd020a9 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   vardyn: example # A dyn variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type_empty.sh index cd1b76869..83dd020a9 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_0_type_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   vardyn: example # A dyn variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1.sh index 11a17b849..0922a6d2b 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1_empty.sh index 11a17b849..0922a6d2b 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_1_1_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_empty.sh index 9cdc64b22..360797c0f 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_empty.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynexample: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_forbidden_char.sh index d64a7cef2..5e41e44a9 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_forbidden_char.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_integer_empty.sh index 8eb66bca9..e24672b82 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_integer_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_number.sh index 8eb66bca9..e24672b82 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_number.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_jinja_number.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description.sh index 49850e9d7..2d3b0c8b3 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description_empty.sh index 49850e9d7..2d3b0c8b3 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_no_description_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_source_hidden.sh index 1ae51e5f4..6ccb2b53a 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_source_hidden.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # A dynamic family  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_static.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_static.sh index f10e32bb1..174aa3fbb 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_static.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example # A variable inside a dynamic family  - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # A dynamic family  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_test.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_test.sh index 7f6718d3a..b65be535a 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_test.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: # A suffix variable  @@ -13,11 +10,8 @@  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_upper_char.sh index 390b2d52e..cad976b70 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_upper_char.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_empty.sh index 88e60a502..1eea4d09f 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_empty.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: # A suffix variable   - example  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_optional.sh index e731a45d2..2daa6a8c9 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_optional.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_optional.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   dyna: # A dynamic family  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix.sh index f91c52bd1..613e88c37 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix_empty.sh index 229e328cf..bba7e2a95 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_dynamic_variable_suffix_empty.sh @@ -1,19 +1,13 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var: # A suffix variable   - val1   - val2  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_0family_mode.sh b/tests/results/test_namespace_examples_comment/60_0family_mode.sh index 6fd974cae..72dc15d54 100644 --- a/tests/results/test_namespace_examples_comment/60_0family_mode.sh +++ b/tests/results/test_namespace_examples_comment/60_0family_mode.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   family: # A family  diff --git a/tests/results/test_namespace_examples_comment/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_examples_comment/60_1family_dynamic_jinja.sh index f46b567b8..3c350dcd1 100644 --- a/tests/results/test_namespace_examples_comment/60_1family_dynamic_jinja.sh +++ b/tests/results/test_namespace_examples_comment/60_1family_dynamic_jinja.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh index e3c72f4a7..5ea160d65 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -12,11 +9,8 @@  family: # A family   var: example # With a variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh index 10c570bf1..702574496 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 10c570bf1..702574496 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh index e3c72f4a7..5ea160d65 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -12,11 +9,8 @@  family: # A family   var: example # With a variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc.sh index cbcc45fbb..f0d48ca57 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffx variable  diff --git a/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc_empty.sh index cbcc45fbb..f0d48ca57 100644 --- a/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_2family_dynamic_outside_calc_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffx variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2.sh index 2873b3c62..9f86790f2 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2_empty.sh index 2873b3c62..9f86790f2 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc2_empty.sh @@ -1,17 +1,11 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   var2: example # A second variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix.sh index b969873cf..6c2fc65b9 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2.sh index 6af9dff00..ecaa20da2 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh index 6af9dff00..ecaa20da2 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix2_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh index 99e846541..c40a43ed8 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled2.sh index 9ddab9e15..c270d03ce 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty.sh index b969873cf..6c2fc65b9 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_2.sh index 50401bd5f..a457e8b38 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_3.sh index a4e1aa893..9d1ad8265 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var2: example # A variable calculated  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden.sh index aa507520e..f1f618b2d 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_boolean.sh index e66deedcb..7a91ad398 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_multi.sh index 3b485798d..7c21d46d5 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param.sh index b89cb3548..c90fcc938 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh index b89cb3548..c90fcc938 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_suffix_param_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable.sh index b969873cf..6c2fc65b9 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled.sh index 11432f0d4..bb781c364 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic famify for {{ identifier }}  @@ -12,11 +9,8 @@  var1: example # A dynamic variable   var2: example # A new variable  - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # A dynamic famify for {{ identifier }}  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh index 90dae31cb..2ed6a3e15 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic famify for {{ identifier }}  @@ -11,11 +8,8 @@  var1: example # A dynamic variable   var2: example # A new variable  - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # A dynamic famify for {{ identifier }}  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_empty.sh index b969873cf..6c2fc65b9 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_calc_variable_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -10,11 +7,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_hidden_suffix.sh index 798547a98..9dff9cc08 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_hidden_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   dynval1: # A dynamic family  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix_empty.sh index c0be384f1..d6071cb85 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_unknown_suffix_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside.sh index 5c4042aee..bea49e188 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2.sh index 948240a3d..b5e2b9acb 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var2: # A variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2_empty.sh index 948240a3d..b5e2b9acb 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside2_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var2: # A variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_1_0.sh index 5c4042aee..bea49e188 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_1_0.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_1_0.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_empty.sh index 5c4042aee..bea49e188 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja.sh index 5c4042aee..bea49e188 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja_empty.sh index 5c4042aee..bea49e188 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix_empty.sh index 8fc9f8f60..ef7da8e61 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix.sh index d99bb0277..0da626d87 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh index a56956dea..9d581b61d 100644 --- a/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # Asuffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside.sh index 79931c7df..c75f33e4b 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside_empty.sh index 79931c7df..c75f33e4b 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_inside_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership.sh index 03e957939..1f8beffa0 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -12,11 +9,8 @@  leadership: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership_empty.sh index 03e957939..1f8beffa0 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_leadership_empty.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -12,11 +9,8 @@  leadership: # A leadership   - leader: example # A leader  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic.sh index 7c255f7ef..ffcdc91c5 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0.sh index 7c255f7ef..ffcdc91c5 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0_2.sh index b044f1aa6..cc7730554 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   val1: # A dynamic family  @@ -16,11 +13,8 @@  val2: # A dynamic family   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty.sh index 7c255f7ef..ffcdc91c5 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty2.sh index 2505706e9..b49b0f109 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty2.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_sub_dynamic_empty2.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A identifier variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi.sh index deb085766..790240255 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -16,11 +13,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi2.sh index deb085766..790240255 100644 --- a/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_examples_comment/60_6family_dynamic_suffix_auto_multi2.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # dyn{{ identifier }}  @@ -16,11 +13,8 @@  dynval2: # dyn{{ identifier }}   var: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var1: # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/60_9extra_dynamic.sh b/tests/results/test_namespace_examples_comment/60_9extra_dynamic.sh index 3dac9762e..af20c3e57 100644 --- a/tests/results/test_namespace_examples_comment/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_examples_comment/60_9extra_dynamic.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  extra: # Extra   dyn_a: # dyn_{{ identifier }}   var: example  - - Example with all variables modifiable - ---  rougail: # Rougail   var: # A variable  diff --git a/tests/results/test_namespace_examples_comment/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_examples_comment/60_9extra_dynamic_extra.sh index ed11000ba..b4d5f4eb1 100644 --- a/tests/results/test_namespace_examples_comment/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_examples_comment/60_9extra_dynamic_extra.sh @@ -1,18 +1,12 @@ - - Example with mandatory variables not filled in - ---  extra: # Extra   dyn_a: # dyn_{{ identifier }}   var: example  - - Example with all variables modifiable - ---  rougail: # Rougail   general: # Gรฉnรฉral  diff --git a/tests/results/test_namespace_examples_comment/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_examples_comment/60_9family_dynamic_calc_both.sh index 88e5f2834..beb33baf3 100644 --- a/tests/results/test_namespace_examples_comment/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_examples_comment/60_9family_dynamic_calc_both.sh @@ -1,8 +1,5 @@ - - Example with mandatory variables not filled in - ---  rougail: # Rougail   dynval1: # A dynamic family  @@ -10,11 +7,8 @@  dynval2: # A dynamic family   vardyn: example # A dynamic variable  - - Example with all variables modifiable - ---  rougail: # Rougail   var: val2 # A suffix variable  diff --git a/tests/results/test_namespace_examples_comment/68_0family_leadership_mode.sh b/tests/results/test_namespace_examples_comment/68_0family_leadership_mode.sh index 2b2f813d8..cbd74ee19 100644 --- a/tests/results/test_namespace_examples_comment/68_0family_leadership_mode.sh +++ b/tests/results/test_namespace_examples_comment/68_0family_leadership_mode.sh @@ -1,8 +1,5 @@ - - Example with all variables modifiable - ---  rougail: # Rougail   leader: # A leadership  diff --git a/tests/results/test_namespace_without_family/00_0version_underscore.adoc b/tests/results/test_namespace_without_family/00_0version_underscore.adoc index 4ba0d081c..8da675714 100644 --- a/tests/results/test_namespace_without_family/00_0version_underscore.adoc +++ b/tests/results/test_namespace_without_family/00_0version_underscore.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/00_0version_underscore.changelog.adoc b/tests/results/test_namespace_without_family/00_0version_underscore.changelog.adoc index 4e76cde59..439e93b0d 100644 --- a/tests/results/test_namespace_without_family/00_0version_underscore.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_0version_underscore.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/00_0version_underscore.changelog.sh b/tests/results/test_namespace_without_family/00_0version_underscore.changelog.sh index 0c778ff2d..99fff897a 100644 --- a/tests/results/test_namespace_without_family/00_0version_underscore.changelog.sh +++ b/tests/results/test_namespace_without_family/00_0version_underscore.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_1empty_variable.adoc b/tests/results/test_namespace_without_family/00_1empty_variable.adoc index bbfcda8a0..e0b686c3d 100644 --- a/tests/results/test_namespace_without_family/00_1empty_variable.adoc +++ b/tests/results/test_namespace_without_family/00_1empty_variable.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/00_1empty_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_1empty_variable.changelog.adoc index feadc4a9a..0302cd199 100644 --- a/tests/results/test_namespace_without_family/00_1empty_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_1empty_variable.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/00_1empty_variable.changelog.sh b/tests/results/test_namespace_without_family/00_1empty_variable.changelog.sh index f1dcde59e..cc48bc7aa 100644 --- a/tests/results/test_namespace_without_family/00_1empty_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/00_1empty_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated.adoc b/tests/results/test_namespace_without_family/00_2default_calculated.adoc index a59e48cf1..9a4a348f0 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated.changelog.adoc index 66233df88..cd5c39bcd 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated.changelog.sh index 15776b1dc..e00a7f203 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc index 4cbc2c1f1..502e3a718 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc index cae168a54..fab20d71d 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh index 918633bf1..c2382623f 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh b/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh index 6c4071c18..4ae898e49 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.adoc index c0569eefe..151a7f5f9 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.adoc index 288dfd310..afbeca28b 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.sh index dde526afd..b8b0f3cd9 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_params_permissive.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc index b034ac300..056d896e6 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc index 75654e23c..05ba46e0b 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh index 083d91014..c4c85620a 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.adoc index a7c41448c..d917f8164 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.adoc index 51a7253b4..24cdfc75e 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.sh index 0008bd01b..d48a7cc77 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.adoc index d5f79e054..bed9274c8 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc index b5e98cec0..ae27ad3a0 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc @@ -2,25 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh index 9fd31fe8d..30d397521 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc index 9232b927b..e67f712c2 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc index 0a396e265..60962b1b4 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh index f9606c260..7967ed7d2 100644 --- a/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh +++ b/tests/results/test_namespace_without_family/00_2default_calculated_variable_transitive.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_4load_subfolder.adoc b/tests/results/test_namespace_without_family/00_4load_subfolder.adoc index c2d9de406..12657985a 100644 --- a/tests/results/test_namespace_without_family/00_4load_subfolder.adoc +++ b/tests/results/test_namespace_without_family/00_4load_subfolder.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.adoc b/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.adoc index ec3bbea2e..c75d88a9a 100644 --- a/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.sh b/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.sh index ae7ecce79..00c3c73af 100644 --- a/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.sh +++ b/tests/results/test_namespace_without_family/00_4load_subfolder.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_5load_notype.adoc b/tests/results/test_namespace_without_family/00_5load_notype.adoc index 8182aac03..32178cb3c 100644 --- a/tests/results/test_namespace_without_family/00_5load_notype.adoc +++ b/tests/results/test_namespace_without_family/00_5load_notype.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace_without_family/00_5load_notype.changelog.adoc b/tests/results/test_namespace_without_family/00_5load_notype.changelog.adoc index dc74c827a..e4552e122 100644 --- a/tests/results/test_namespace_without_family/00_5load_notype.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_5load_notype.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace_without_family/00_5load_notype.changelog.sh b/tests/results/test_namespace_without_family/00_5load_notype.changelog.sh index 5ee4db1ac..4605d1f25 100644 --- a/tests/results/test_namespace_without_family/00_5load_notype.changelog.sh +++ b/tests/results/test_namespace_without_family/00_5load_notype.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6boolean.adoc b/tests/results/test_namespace_without_family/00_6boolean.adoc index e95be2278..048fb5ef5 100644 --- a/tests/results/test_namespace_without_family/00_6boolean.adoc +++ b/tests/results/test_namespace_without_family/00_6boolean.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test_namespace_without_family/00_6boolean.changelog.adoc b/tests/results/test_namespace_without_family/00_6boolean.changelog.adoc index aa4225c72..0d0bea582 100644 --- a/tests/results/test_namespace_without_family/00_6boolean.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6boolean.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test_namespace_without_family/00_6boolean.changelog.sh b/tests/results/test_namespace_without_family/00_6boolean.changelog.sh index 4245c2a8b..3df17debe 100644 --- a/tests/results/test_namespace_without_family/00_6boolean.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.adoc b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.adoc index bc9ddce36..2ec8816c8 100644 --- a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.adoc b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.adoc index 17c493db3..82b675f9c 100644 --- a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.sh b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.sh index daec37140..510c3758e 100644 --- a/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6boolean_no_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6choice.adoc b/tests/results/test_namespace_without_family/00_6choice.adoc index c1e2d9920..b52d7fc49 100644 --- a/tests/results/test_namespace_without_family/00_6choice.adoc +++ b/tests/results/test_namespace_without_family/00_6choice.adoc @@ -1,62 +1,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test_namespace_without_family/00_6choice.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice.changelog.adoc index ae09a7a5d..689ee971d 100644 --- a/tests/results/test_namespace_without_family/00_6choice.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice.changelog.adoc @@ -3,62 +3,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test_namespace_without_family/00_6choice.changelog.sh b/tests/results/test_namespace_without_family/00_6choice.changelog.sh index b0925ea84..c6324e9e5 100644 --- a/tests/results/test_namespace_without_family/00_6choice.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice.changelog.sh @@ -1,46 +1,43 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6choice.sh b/tests/results/test_namespace_without_family/00_6choice.sh index 58c3411a0..a8630973e 100644 --- a/tests/results/test_namespace_without_family/00_6choice.sh +++ b/tests/results/test_namespace_without_family/00_6choice.sh @@ -3,38 +3,38 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6choice_calculation.adoc b/tests/results/test_namespace_without_family/00_6choice_calculation.adoc index 60dfbf150..3851f55e5 100644 --- a/tests/results/test_namespace_without_family/00_6choice_calculation.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.adoc index 27575af34..fad941645 100644 --- a/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.sh index 6f10f94ae..942bced63 100644 --- a/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6choice_link.adoc b/tests/results/test_namespace_without_family/00_6choice_link.adoc index 687932e13..e7ee9ba91 100644 --- a/tests/results/test_namespace_without_family/00_6choice_link.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_link.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc index 755604bbb..15b696347 100644 --- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh index 2e576b36e..4d579fbc3 100644 --- a/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice_link.changelog.sh @@ -1,22 +1,19 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6choice_link.sh b/tests/results/test_namespace_without_family/00_6choice_link.sh index 277cc12d7..d2730e547 100644 --- a/tests/results/test_namespace_without_family/00_6choice_link.sh +++ b/tests/results/test_namespace_without_family/00_6choice_link.sh @@ -3,15 +3,15 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.adoc b/tests/results/test_namespace_without_family/00_6choice_variable.adoc index 20eaaf15e..c769d7315 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc index 85b5fb3b1..67252d53b 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh index 88b556fce..1fb75a7e0 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable.sh b/tests/results/test_namespace_without_family/00_6choice_variable.sh index 647fe8361..695f31b57 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc index 161b1c047..71252378a 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc index b267ad978..5b5f4934d 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh index aab5aefd4..a6dae2013 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link.sh index 24e8162bd..e1fe6b675 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc index 181c90918..0c34a68cc 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a -| - -**rougail.family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc index 746d7430e..307c59d8c 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: a -| - -**rougail.family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **rougail.family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "rougail.var1" + **Default**: the value of the variable "rougail.var2" |==== diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh index b61b4e397..9148237e7 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh b/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh index 78619fc57..783f71a86 100644 --- a/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh +++ b/tests/results/test_namespace_without_family/00_6choice_variable_link2.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/00_6custom.adoc b/tests/results/test_namespace_without_family/00_6custom.adoc index 98c4f7976..8c1c28f5f 100644 --- a/tests/results/test_namespace_without_family/00_6custom.adoc +++ b/tests/results/test_namespace_without_family/00_6custom.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace_without_family/00_6custom.changelog.adoc b/tests/results/test_namespace_without_family/00_6custom.changelog.adoc index 9d0c8890f..dba045c1b 100644 --- a/tests/results/test_namespace_without_family/00_6custom.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6custom.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace_without_family/00_6custom.changelog.sh b/tests/results/test_namespace_without_family/00_6custom.changelog.sh index 2c933e767..279aed2b0 100644 --- a/tests/results/test_namespace_without_family/00_6custom.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6custom.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6domainname.adoc b/tests/results/test_namespace_without_family/00_6domainname.adoc index 1eca1bf76..06d6e74c0 100644 --- a/tests/results/test_namespace_without_family/00_6domainname.adoc +++ b/tests/results/test_namespace_without_family/00_6domainname.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test_namespace_without_family/00_6domainname.changelog.adoc b/tests/results/test_namespace_without_family/00_6domainname.changelog.adoc index a76f0c68d..3078a344e 100644 --- a/tests/results/test_namespace_without_family/00_6domainname.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6domainname.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test_namespace_without_family/00_6domainname.changelog.sh b/tests/results/test_namespace_without_family/00_6domainname.changelog.sh index b177ccd31..91e17f9bc 100644 --- a/tests/results/test_namespace_without_family/00_6domainname.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6domainname.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6domainname_params.adoc b/tests/results/test_namespace_without_family/00_6domainname_params.adoc index ac6129a2a..273a7ec27 100644 --- a/tests/results/test_namespace_without_family/00_6domainname_params.adoc +++ b/tests/results/test_namespace_without_family/00_6domainname_params.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `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_without_family/00_6domainname_params.changelog.adoc b/tests/results/test_namespace_without_family/00_6domainname_params.changelog.adoc index 28c49bf73..d446d32e0 100644 --- a/tests/results/test_namespace_without_family/00_6domainname_params.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6domainname_params.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `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_without_family/00_6domainname_params.changelog.sh b/tests/results/test_namespace_without_family/00_6domainname_params.changelog.sh index 6e51a72d3..d64c8ff14 100644 --- a/tests/results/test_namespace_without_family/00_6domainname_params.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6domainname_params.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6float.adoc b/tests/results/test_namespace_without_family/00_6float.adoc index 19282de8e..ae09d8abd 100644 --- a/tests/results/test_namespace_without_family/00_6float.adoc +++ b/tests/results/test_namespace_without_family/00_6float.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test_namespace_without_family/00_6float.changelog.adoc b/tests/results/test_namespace_without_family/00_6float.changelog.adoc index 32033bd0e..b2d44ceef 100644 --- a/tests/results/test_namespace_without_family/00_6float.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6float.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test_namespace_without_family/00_6float.changelog.sh b/tests/results/test_namespace_without_family/00_6float.changelog.sh index 52a6f6737..46db42bfa 100644 --- a/tests/results/test_namespace_without_family/00_6float.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6float.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6integer.adoc b/tests/results/test_namespace_without_family/00_6integer.adoc index befe2b055..ad637ae7c 100644 --- a/tests/results/test_namespace_without_family/00_6integer.adoc +++ b/tests/results/test_namespace_without_family/00_6integer.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace_without_family/00_6integer.changelog.adoc b/tests/results/test_namespace_without_family/00_6integer.changelog.adoc index 3cc3b76aa..d6008bc72 100644 --- a/tests/results/test_namespace_without_family/00_6integer.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6integer.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace_without_family/00_6integer.changelog.sh b/tests/results/test_namespace_without_family/00_6integer.changelog.sh index 56dc10881..b3fbac4fb 100644 --- a/tests/results/test_namespace_without_family/00_6integer.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6integer.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6ip.adoc b/tests/results/test_namespace_without_family/00_6ip.adoc index 5eee46fb3..c10be9bc1 100644 --- a/tests/results/test_namespace_without_family/00_6ip.adoc +++ b/tests/results/test_namespace_without_family/00_6ip.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -20,11 +14,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test_namespace_without_family/00_6ip.changelog.adoc b/tests/results/test_namespace_without_family/00_6ip.changelog.adoc index cfb912d47..a5efdbf96 100644 --- a/tests/results/test_namespace_without_family/00_6ip.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6ip.changelog.adoc @@ -3,18 +3,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -22,11 +16,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test_namespace_without_family/00_6ip.changelog.sh b/tests/results/test_namespace_without_family/00_6ip.changelog.sh index 2b39798ba..ef8ae97bb 100644 --- a/tests/results/test_namespace_without_family/00_6ip.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6ip.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test_namespace_without_family/00_6ip.sh b/tests/results/test_namespace_without_family/00_6ip.sh index e59de76b2..9eaa26a90 100644 --- a/tests/results/test_namespace_without_family/00_6ip.sh +++ b/tests/results/test_namespace_without_family/00_6ip.sh @@ -7,8 +7,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test_namespace_without_family/00_6network.adoc b/tests/results/test_namespace_without_family/00_6network.adoc index 00264cf0e..388b3afd7 100644 --- a/tests/results/test_namespace_without_family/00_6network.adoc +++ b/tests/results/test_namespace_without_family/00_6network.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test_namespace_without_family/00_6network.changelog.adoc b/tests/results/test_namespace_without_family/00_6network.changelog.adoc index 1d285a076..918971a7e 100644 --- a/tests/results/test_namespace_without_family/00_6network.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6network.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test_namespace_without_family/00_6network.changelog.sh b/tests/results/test_namespace_without_family/00_6network.changelog.sh index eda1fcf95..7b2ae4ad8 100644 --- a/tests/results/test_namespace_without_family/00_6network.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6network.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6number.adoc b/tests/results/test_namespace_without_family/00_6number.adoc index befe2b055..ad637ae7c 100644 --- a/tests/results/test_namespace_without_family/00_6number.adoc +++ b/tests/results/test_namespace_without_family/00_6number.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace_without_family/00_6number.changelog.adoc b/tests/results/test_namespace_without_family/00_6number.changelog.adoc index 3cc3b76aa..d6008bc72 100644 --- a/tests/results/test_namespace_without_family/00_6number.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6number.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_namespace_without_family/00_6number.changelog.sh b/tests/results/test_namespace_without_family/00_6number.changelog.sh index 56dc10881..b3fbac4fb 100644 --- a/tests/results/test_namespace_without_family/00_6number.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6number.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6port.adoc b/tests/results/test_namespace_without_family/00_6port.adoc index db840c445..d465cca6b 100644 --- a/tests/results/test_namespace_without_family/00_6port.adoc +++ b/tests/results/test_namespace_without_family/00_6port.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -23,11 +17,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**rougail.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **rougail.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test_namespace_without_family/00_6port.changelog.adoc b/tests/results/test_namespace_without_family/00_6port.changelog.adoc index 869544feb..daf5a1f87 100644 --- a/tests/results/test_namespace_without_family/00_6port.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6port.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -25,11 +19,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**rougail.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **rougail.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test_namespace_without_family/00_6port.changelog.sh b/tests/results/test_namespace_without_family/00_6port.changelog.sh index b5f1b8f28..e2d6ef1b9 100644 --- a/tests/results/test_namespace_without_family/00_6port.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6port.changelog.sh @@ -1,39 +1,36 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6port.sh b/tests/results/test_namespace_without_family/00_6port.sh index d067da264..123836f8b 100644 --- a/tests/results/test_namespace_without_family/00_6port.sh +++ b/tests/results/test_namespace_without_family/00_6port.sh @@ -3,31 +3,31 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6regexp.adoc b/tests/results/test_namespace_without_family/00_6regexp.adoc index d7c1566cd..3171b23fb 100644 --- a/tests/results/test_namespace_without_family/00_6regexp.adoc +++ b/tests/results/test_namespace_without_family/00_6regexp.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test_namespace_without_family/00_6regexp.changelog.adoc b/tests/results/test_namespace_without_family/00_6regexp.changelog.adoc index e5b4259e1..ab4ecf126 100644 --- a/tests/results/test_namespace_without_family/00_6regexp.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6regexp.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test_namespace_without_family/00_6regexp.changelog.sh b/tests/results/test_namespace_without_family/00_6regexp.changelog.sh index 3c1b8a63f..eea084f59 100644 --- a/tests/results/test_namespace_without_family/00_6regexp.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6regexp.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,7 +9,7 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6regexp.sh b/tests/results/test_namespace_without_family/00_6regexp.sh index 7973eb954..2f76904fa 100644 --- a/tests/results/test_namespace_without_family/00_6regexp.sh +++ b/tests/results/test_namespace_without_family/00_6regexp.sh @@ -7,6 +7,6 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.adoc b/tests/results/test_namespace_without_family/00_6regexp_link.adoc index 3a55fd773..aec5ea090 100644 --- a/tests/results/test_namespace_without_family/00_6regexp_link.adoc +++ b/tests/results/test_namespace_without_family/00_6regexp_link.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "rougail.var1" + **Examples**: diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc index a4bc1fd29..1b7db05f1 100644 --- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.adoc @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "rougail.var1" + **Examples**: diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh index 727d1ccde..2ec8d54e6 100644 --- a/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6regexp_link.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -22,7 +19,7 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6regexp_link.sh b/tests/results/test_namespace_without_family/00_6regexp_link.sh index ed432e5c8..544db14b8 100644 --- a/tests/results/test_namespace_without_family/00_6regexp_link.sh +++ b/tests/results/test_namespace_without_family/00_6regexp_link.sh @@ -7,8 +7,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -17,6 +17,6 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6secret.adoc b/tests/results/test_namespace_without_family/00_6secret.adoc index a2cb05c76..cee449454 100644 --- a/tests/results/test_namespace_without_family/00_6secret.adoc +++ b/tests/results/test_namespace_without_family/00_6secret.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace_without_family/00_6secret.changelog.adoc b/tests/results/test_namespace_without_family/00_6secret.changelog.adoc index c66709eb8..ec88f25db 100644 --- a/tests/results/test_namespace_without_family/00_6secret.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6secret.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test_namespace_without_family/00_6secret.changelog.sh b/tests/results/test_namespace_without_family/00_6secret.changelog.sh index 16e373c08..75242e469 100644 --- a/tests/results/test_namespace_without_family/00_6secret.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6secret.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_6secret_param.adoc b/tests/results/test_namespace_without_family/00_6secret_param.adoc index 6aab6a637..8fd50069d 100644 --- a/tests/results/test_namespace_without_family/00_6secret_param.adoc +++ b/tests/results/test_namespace_without_family/00_6secret_param.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**rougail.secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **rougail.secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test_namespace_without_family/00_6secret_param.changelog.adoc b/tests/results/test_namespace_without_family/00_6secret_param.changelog.adoc index c8e768de8..2853f4c70 100644 --- a/tests/results/test_namespace_without_family/00_6secret_param.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6secret_param.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **rougail.secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**rougail.secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **rougail.secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**rougail.secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **rougail.secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test_namespace_without_family/00_6secret_param.changelog.sh b/tests/results/test_namespace_without_family/00_6secret_param.changelog.sh index f9fb6721b..4ea162de1 100644 --- a/tests/results/test_namespace_without_family/00_6secret_param.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6secret_param.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,16 +9,16 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6secret_param.sh b/tests/results/test_namespace_without_family/00_6secret_param.sh index f937e817b..7696ea991 100644 --- a/tests/results/test_namespace_without_family/00_6secret_param.sh +++ b/tests/results/test_namespace_without_family/00_6secret_param.sh @@ -7,15 +7,15 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_6string.adoc b/tests/results/test_namespace_without_family/00_6string.adoc index 0b00dce30..70cea9178 100644 --- a/tests/results/test_namespace_without_family/00_6string.adoc +++ b/tests/results/test_namespace_without_family/00_6string.adoc @@ -1,50 +1,26 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test_namespace_without_family/00_6string.changelog.adoc b/tests/results/test_namespace_without_family/00_6string.changelog.adoc index 0787f6c4b..f233fe37f 100644 --- a/tests/results/test_namespace_without_family/00_6string.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_6string.changelog.adoc @@ -2,51 +2,27 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test_namespace_without_family/00_6string.changelog.sh b/tests/results/test_namespace_without_family/00_6string.changelog.sh index 4c816ee76..9ed215da1 100644 --- a/tests/results/test_namespace_without_family/00_6string.changelog.sh +++ b/tests/results/test_namespace_without_family/00_6string.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7choice_quote.adoc b/tests/results/test_namespace_without_family/00_7choice_quote.adoc index 8380eb17c..5f5a141c4 100644 --- a/tests/results/test_namespace_without_family/00_7choice_quote.adoc +++ b/tests/results/test_namespace_without_family/00_7choice_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test_namespace_without_family/00_7choice_quote.changelog.adoc b/tests/results/test_namespace_without_family/00_7choice_quote.changelog.adoc index a98f87a0a..534651c84 100644 --- a/tests/results/test_namespace_without_family/00_7choice_quote.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7choice_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test_namespace_without_family/00_7choice_quote.changelog.sh b/tests/results/test_namespace_without_family/00_7choice_quote.changelog.sh index 0bbdac482..a1398bee4 100644 --- a/tests/results/test_namespace_without_family/00_7choice_quote.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7choice_quote.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_7choice_quote.sh b/tests/results/test_namespace_without_family/00_7choice_quote.sh index a40ad80fe..86a2a5130 100644 --- a/tests/results/test_namespace_without_family/00_7choice_quote.sh +++ b/tests/results/test_namespace_without_family/00_7choice_quote.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_7help.adoc b/tests/results/test_namespace_without_family/00_7help.adoc index 3a2d08efd..4319fc774 100644 --- a/tests/results/test_namespace_without_family/00_7help.adoc +++ b/tests/results/test_namespace_without_family/00_7help.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test_namespace_without_family/00_7help.changelog.adoc b/tests/results/test_namespace_without_family/00_7help.changelog.adoc index 1818f644d..6f90f100e 100644 --- a/tests/results/test_namespace_without_family/00_7help.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7help.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test_namespace_without_family/00_7help.changelog.sh b/tests/results/test_namespace_without_family/00_7help.changelog.sh index af592b306..f8a86a7cb 100644 --- a/tests/results/test_namespace_without_family/00_7help.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7help.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7help_quote.adoc b/tests/results/test_namespace_without_family/00_7help_quote.adoc index dec520066..51bd5fa08 100644 --- a/tests/results/test_namespace_without_family/00_7help_quote.adoc +++ b/tests/results/test_namespace_without_family/00_7help_quote.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test_namespace_without_family/00_7help_quote.changelog.adoc b/tests/results/test_namespace_without_family/00_7help_quote.changelog.adoc index 6dc4ab7d2..ed54993a5 100644 --- a/tests/results/test_namespace_without_family/00_7help_quote.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7help_quote.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test_namespace_without_family/00_7help_quote.changelog.sh b/tests/results/test_namespace_without_family/00_7help_quote.changelog.sh index 5cf5cf29f..a22f2031b 100644 --- a/tests/results/test_namespace_without_family/00_7help_quote.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7help_quote.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7help_sup.adoc b/tests/results/test_namespace_without_family/00_7help_sup.adoc index ebbcfcda2..aee1e9907 100644 --- a/tests/results/test_namespace_without_family/00_7help_sup.adoc +++ b/tests/results/test_namespace_without_family/00_7help_sup.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test_namespace_without_family/00_7help_sup.changelog.adoc b/tests/results/test_namespace_without_family/00_7help_sup.changelog.adoc index e26a032fe..6ea79b73f 100644 --- a/tests/results/test_namespace_without_family/00_7help_sup.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7help_sup.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test_namespace_without_family/00_7help_sup.changelog.sh b/tests/results/test_namespace_without_family/00_7help_sup.changelog.sh index 18ecc23ac..b80a6c76c 100644 --- a/tests/results/test_namespace_without_family/00_7help_sup.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7help_sup.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote.adoc index 537a1e0ca..1a0d5bf48 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.adoc index 8a6819e08..7ed3aa3a8 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.sh b/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.sh index 8d60d82cc..6936b0360 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7value_doublequote.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote2.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote2.adoc index 4d37b9276..6cb1b4dfc 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote2.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.adoc index 0162b68e0..075876510 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.sh b/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.sh index d8a2a8fbc..4146f5a3a 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7value_doublequote2.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote3.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote3.adoc index 80cbb5147..e888df334 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote3.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.adoc b/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.adoc index 09e543276..2fa762f2a 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.sh b/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.sh index dd0c25c6c..10d403b3d 100644 --- a/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7value_doublequote3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_7value_quote.adoc b/tests/results/test_namespace_without_family/00_7value_quote.adoc index 0493c9e35..fe5bf21b6 100644 --- a/tests/results/test_namespace_without_family/00_7value_quote.adoc +++ b/tests/results/test_namespace_without_family/00_7value_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test_namespace_without_family/00_7value_quote.changelog.adoc b/tests/results/test_namespace_without_family/00_7value_quote.changelog.adoc index 49fe81bed..a1606f2c7 100644 --- a/tests/results/test_namespace_without_family/00_7value_quote.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_7value_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test_namespace_without_family/00_7value_quote.changelog.sh b/tests/results/test_namespace_without_family/00_7value_quote.changelog.sh index 0cd7d4276..ecddd7762 100644 --- a/tests/results/test_namespace_without_family/00_7value_quote.changelog.sh +++ b/tests/results/test_namespace_without_family/00_7value_quote.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_8calculation_information.adoc b/tests/results/test_namespace_without_family/00_8calculation_information.adoc index 4cdc3b495..fece8bc62 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_information.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_information.changelog.adoc b/tests/results/test_namespace_without_family/00_8calculation_information.changelog.adoc index c957948aa..82e1b8793 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_information.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_information.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_information.changelog.sh b/tests/results/test_namespace_without_family/00_8calculation_information.changelog.sh index cb25598ac..33e414bed 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_information.changelog.sh +++ b/tests/results/test_namespace_without_family/00_8calculation_information.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_8calculation_namespace.adoc b/tests/results/test_namespace_without_family/00_8calculation_namespace.adoc index a9fd5529d..ac92188fd 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_namespace.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_namespace.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the namespace |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.adoc b/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.adoc index bbffebd97..db410ef72 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the namespace |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.sh b/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.sh index 70791a9d7..b1afaba29 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.sh +++ b/tests/results/test_namespace_without_family/00_8calculation_namespace.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.adoc b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.adoc index 109959596..cfd8a3844 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.adoc b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.adoc index 903e19548..006670ab4 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.sh b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.sh index b13afedbc..b1894e676 100644 --- a/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.sh +++ b/tests/results/test_namespace_without_family/00_8calculation_param_namespace.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_8test.adoc b/tests/results/test_namespace_without_family/00_8test.adoc index 3fade8a21..cfb56dd9d 100644 --- a/tests/results/test_namespace_without_family/00_8test.adoc +++ b/tests/results/test_namespace_without_family/00_8test.adoc @@ -1,50 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test_namespace_without_family/00_8test.changelog.adoc b/tests/results/test_namespace_without_family/00_8test.changelog.adoc index af6dd9778..323127f9a 100644 --- a/tests/results/test_namespace_without_family/00_8test.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_8test.changelog.adoc @@ -3,50 +3,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test_namespace_without_family/00_8test.changelog.sh b/tests/results/test_namespace_without_family/00_8test.changelog.sh index 8284d6c67..571d4ed01 100644 --- a/tests/results/test_namespace_without_family/00_8test.changelog.sh +++ b/tests/results/test_namespace_without_family/00_8test.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -15,14 +12,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -30,7 +27,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_8test.sh b/tests/results/test_namespace_without_family/00_8test.sh index bf2c3511e..7bf8558be 100644 --- a/tests/results/test_namespace_without_family/00_8test.sh +++ b/tests/results/test_namespace_without_family/00_8test.sh @@ -10,14 +10,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -25,6 +25,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9choice_variable_multi.adoc b/tests/results/test_namespace_without_family/00_9choice_variable_multi.adoc index 70976960e..410968fc6 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variable_multi.adoc +++ b/tests/results/test_namespace_without_family/00_9choice_variable_multi.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.adoc b/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.adoc index 8299c2036..de2880ba4 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.sh b/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.sh index 863f2825d..2ae50f34d 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9choice_variable_multi.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9choice_variable_multi.sh b/tests/results/test_namespace_without_family/00_9choice_variable_multi.sh index 5547ec1c8..25a959430 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace_without_family/00_9choice_variable_multi.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.adoc b/tests/results/test_namespace_without_family/00_9choice_variables.adoc index 37ee44a85..1182f8412 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variables.adoc +++ b/tests/results/test_namespace_without_family/00_9choice_variables.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **rougail.source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**rougail.source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **rougail.source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "rougail.source_variable_1" diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc index 59300c410..98bcf028b 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **rougail.source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**rougail.source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **rougail.source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "rougail.source_variable_1" diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh index 5b455d307..4b591b7fe 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9choice_variables.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -14,9 +11,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9choice_variables.sh b/tests/results/test_namespace_without_family/00_9choice_variables.sh index 185e9b4e4..e5366856d 100644 --- a/tests/results/test_namespace_without_family/00_9choice_variables.sh +++ b/tests/results/test_namespace_without_family/00_9choice_variables.sh @@ -9,9 +9,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation.adoc b/tests/results/test_namespace_without_family/00_9default_calculation.adoc index 50af979b5..7cc959cb4 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation.changelog.adoc index b92c1cdb5..29ddb997d 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation.changelog.sh index 02ed907e3..8faf75749 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_information.adoc index fa9830458..3ad9a5002 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.adoc index d2fb8a895..c06d46c4d 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.sh index 866e90f8a..9dab9d53c 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.adoc index d2a76e7c9..35a8e93c3 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.adoc index b4171be84..db270eb9f 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.sh index 65549f1fa..e2ef872ed 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_information_other_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc index 96ce07e6c..c9e958c43 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc index 40e1d12a9..8e68659cb 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh index 7d87ca0bf..2f6f13241 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh index f18ab19f5..607b7ace4 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional.sh @@ -5,7 +5,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc index 96ce07e6c..c9e958c43 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc index 40e1d12a9..8e68659cb 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh index 7d87ca0bf..2f6f13241 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh index f18ab19f5..607b7ace4 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional2.sh @@ -5,7 +5,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc index 96ce07e6c..c9e958c43 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc index 40e1d12a9..8e68659cb 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "rougail.my_variable" if it is defined +* the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh index 7d87ca0bf..2f6f13241 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh index f18ab19f5..607b7ace4 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_multi_optional_default.sh @@ -5,7 +5,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "rougail.my_variable" if it is โ”‚ โ”‚ โ”‚ defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional.adoc index ecff7b4b6..aec5d6973 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.adoc index 0fb63dc8d..96ba6168b 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.sh index 4a34a3033..307ab96ee 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc index 1090b0e09..e75444886 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "rougail.my_variable" if it is defined +* val2 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc index 94164685a..9e24d1a25 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.adoc @@ -2,19 +2,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **rougail.my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**rougail.my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "rougail.my_variable" if it is defined +* val2 +| **rougail.my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "rougail.my_variable" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh index 1a6c41337..a631fd12f 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "rougail.my_variable" if it is โ”‚ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh index 8245c2b8e..6c9c34bab 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_optional_exists.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "rougail.my_variable" if it is โ”‚ diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.adoc index b50271668..e5d541d19 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.adoc index 415474553..6b7ae0577 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.sh b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.sh index d1e1c57a1..7c14c19e4 100644 --- a/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_calculation_param_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc index 7500f6807..bfcaef9cb 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc index 622a82d3d..6465381fc 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh index 83c850b3a..0ce3990cd 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc index 7500f6807..bfcaef9cb 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc index 622a82d3d..6465381fc 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.var1" +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh index 83c850b3a..0ce3990cd 100644 --- a/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_information_other_variable2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_integer.adoc b/tests/results/test_namespace_without_family/00_9default_integer.adoc index 129c2efa5..e5de4d980 100644 --- a/tests/results/test_namespace_without_family/00_9default_integer.adoc +++ b/tests/results/test_namespace_without_family/00_9default_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_9default_integer.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_integer.changelog.adoc index 4be6d4016..54e945a19 100644 --- a/tests/results/test_namespace_without_family/00_9default_integer.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_integer.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_9default_integer.changelog.sh b/tests/results/test_namespace_without_family/00_9default_integer.changelog.sh index bf58275c3..466558446 100644 --- a/tests/results/test_namespace_without_family/00_9default_integer.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_integer.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9default_number.adoc b/tests/results/test_namespace_without_family/00_9default_number.adoc index 129c2efa5..e5de4d980 100644 --- a/tests/results/test_namespace_without_family/00_9default_number.adoc +++ b/tests/results/test_namespace_without_family/00_9default_number.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_9default_number.changelog.adoc b/tests/results/test_namespace_without_family/00_9default_number.changelog.adoc index 4be6d4016..54e945a19 100644 --- a/tests/results/test_namespace_without_family/00_9default_number.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9default_number.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_namespace_without_family/00_9default_number.changelog.sh b/tests/results/test_namespace_without_family/00_9default_number.changelog.sh index bf58275c3..466558446 100644 --- a/tests/results/test_namespace_without_family/00_9default_number.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9default_number.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9extra.adoc b/tests/results/test_namespace_without_family/00_9extra.adoc index 6b5f65720..bc42cde38 100644 --- a/tests/results/test_namespace_without_family/00_9extra.adoc +++ b/tests/results/test_namespace_without_family/00_9extra.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: rougail -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: return no |==== diff --git a/tests/results/test_namespace_without_family/00_9extra.changelog.adoc b/tests/results/test_namespace_without_family/00_9extra.changelog.adoc index 6fdd20b30..14eaf7cd5 100644 --- a/tests/results/test_namespace_without_family/00_9extra.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9extra.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: rougail -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: return no |==== diff --git a/tests/results/test_namespace_without_family/00_9extra.changelog.sh b/tests/results/test_namespace_without_family/00_9extra.changelog.sh index 8b9d5ce0d..d7510a7b3 100644 --- a/tests/results/test_namespace_without_family/00_9extra.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9extra.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.adoc b/tests/results/test_namespace_without_family/00_9extra_calculation.adoc index 3787b7ce8..5b0314fad 100644 --- a/tests/results/test_namespace_without_family/00_9extra_calculation.adoc +++ b/tests/results/test_namespace_without_family/00_9extra_calculation.adoc @@ -1,29 +1,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value -| - -**extra.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **extra.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: the value of the variable "rougail.variable" -| - -**extra.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **extra.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: copy the value of rougail.variable -| - -**extra.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **extra.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: copy the value of rougail.variable |==== diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc index 4bbcabdda..7543c5c82 100644 --- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.adoc @@ -3,29 +3,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value -| - -**extra.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **extra.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: the value of the variable "rougail.variable" -| - -**extra.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **extra.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: copy the value of rougail.variable -| - -**extra.variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **extra.variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: copy the value of rougail.variable |==== diff --git a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh index c704596df..ccab620bf 100644 --- a/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9extra_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.adoc b/tests/results/test_namespace_without_family/00_9extra_ouside.adoc index c1fb6e0ad..59035535e 100644 --- a/tests/results/test_namespace_without_family/00_9extra_ouside.adoc +++ b/tests/results/test_namespace_without_family/00_9extra_ouside.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "extra.variable" -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value in extra |==== diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc index dde3f998a..fc7f49902 100644 --- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc +++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "extra.variable" -| - -**extra.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **extra.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: value in extra |==== diff --git a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh index 8f211c713..683a5225b 100644 --- a/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh +++ b/tests/results/test_namespace_without_family/00_9extra_ouside.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/01_6boolean_multi.adoc b/tests/results/test_namespace_without_family/01_6boolean_multi.adoc index 17a50557b..828bf31ae 100644 --- a/tests/results/test_namespace_without_family/01_6boolean_multi.adoc +++ b/tests/results/test_namespace_without_family/01_6boolean_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.adoc index 92a3ac733..9fda11f57 100644 --- a/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.sh b/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.sh index f41750cb6..baf02c2c7 100644 --- a/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6boolean_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6boolean_multi.sh b/tests/results/test_namespace_without_family/01_6boolean_multi.sh index 9a1322ffd..e5d09b0a2 100644 --- a/tests/results/test_namespace_without_family/01_6boolean_multi.sh +++ b/tests/results/test_namespace_without_family/01_6boolean_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6custom_multi.adoc b/tests/results/test_namespace_without_family/01_6custom_multi.adoc index 5d6520c42..9d40f3c47 100644 --- a/tests/results/test_namespace_without_family/01_6custom_multi.adoc +++ b/tests/results/test_namespace_without_family/01_6custom_multi.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/01_6custom_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_6custom_multi.changelog.adoc index 19158b02f..14dc041f7 100644 --- a/tests/results/test_namespace_without_family/01_6custom_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6custom_multi.changelog.adoc @@ -2,19 +2,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**rougail.custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **rougail.custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **rougail.custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/01_6custom_multi.changelog.sh b/tests/results/test_namespace_without_family/01_6custom_multi.changelog.sh index d78adb241..e71e2f483 100644 --- a/tests/results/test_namespace_without_family/01_6custom_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6custom_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,6 +9,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6custom_multi.sh b/tests/results/test_namespace_without_family/01_6custom_multi.sh index f88b07823..959ff55f1 100644 --- a/tests/results/test_namespace_without_family/01_6custom_multi.sh +++ b/tests/results/test_namespace_without_family/01_6custom_multi.sh @@ -7,5 +7,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6float_multi.adoc b/tests/results/test_namespace_without_family/01_6float_multi.adoc index 864f33083..0357a51a8 100644 --- a/tests/results/test_namespace_without_family/01_6float_multi.adoc +++ b/tests/results/test_namespace_without_family/01_6float_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test_namespace_without_family/01_6float_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_6float_multi.changelog.adoc index 68215cf4f..2ba058465 100644 --- a/tests/results/test_namespace_without_family/01_6float_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6float_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test_namespace_without_family/01_6float_multi.changelog.sh b/tests/results/test_namespace_without_family/01_6float_multi.changelog.sh index cce5157c0..15e77866e 100644 --- a/tests/results/test_namespace_without_family/01_6float_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6float_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6float_multi.sh b/tests/results/test_namespace_without_family/01_6float_multi.sh index 157189f8d..5f4547d62 100644 --- a/tests/results/test_namespace_without_family/01_6float_multi.sh +++ b/tests/results/test_namespace_without_family/01_6float_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6integer_multi.adoc b/tests/results/test_namespace_without_family/01_6integer_multi.adoc index a5f7b7f3b..805153f42 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi.adoc +++ b/tests/results/test_namespace_without_family/01_6integer_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test_namespace_without_family/01_6integer_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_6integer_multi.changelog.adoc index df56baddc..52d24dfe4 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6integer_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test_namespace_without_family/01_6integer_multi.changelog.sh b/tests/results/test_namespace_without_family/01_6integer_multi.changelog.sh index acfcf027a..640be9710 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6integer_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6integer_multi.sh b/tests/results/test_namespace_without_family/01_6integer_multi.sh index fe6172cfe..f722baf50 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi.sh +++ b/tests/results/test_namespace_without_family/01_6integer_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.adoc b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.adoc index 53121e025..5349107c9 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.adoc b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.adoc index a9305cccc..709d65d4c 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.adoc @@ -2,11 +2,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.sh b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.sh index d10fef6be..b0acfbcd0 100644 --- a/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6integer_multi_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/01_6string_empty.adoc b/tests/results/test_namespace_without_family/01_6string_empty.adoc index fef3de8b0..c84acd139 100644 --- a/tests/results/test_namespace_without_family/01_6string_empty.adoc +++ b/tests/results/test_namespace_without_family/01_6string_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test_namespace_without_family/01_6string_empty.changelog.adoc b/tests/results/test_namespace_without_family/01_6string_empty.changelog.adoc index e2a32202b..863f02c51 100644 --- a/tests/results/test_namespace_without_family/01_6string_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6string_empty.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test_namespace_without_family/01_6string_empty.changelog.sh b/tests/results/test_namespace_without_family/01_6string_empty.changelog.sh index 9ef0884dc..107e28f88 100644 --- a/tests/results/test_namespace_without_family/01_6string_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6string_empty.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6string_empty.sh b/tests/results/test_namespace_without_family/01_6string_empty.sh index 0e00e07df..d736e7c25 100644 --- a/tests/results/test_namespace_without_family/01_6string_empty.sh +++ b/tests/results/test_namespace_without_family/01_6string_empty.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6string_multi.adoc b/tests/results/test_namespace_without_family/01_6string_multi.adoc index 4278023bb..781f274ad 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi.adoc +++ b/tests/results/test_namespace_without_family/01_6string_multi.adoc @@ -1,60 +1,36 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/01_6string_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_6string_multi.changelog.adoc index 443fecefa..718747387 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_6string_multi.changelog.adoc @@ -2,61 +2,37 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**rougail.var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **rougail.var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**rougail.var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **rougail.var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**rougail.var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **rougail.var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**rougail.var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **rougail.var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/01_6string_multi.changelog.sh b/tests/results/test_namespace_without_family/01_6string_multi.changelog.sh index 049ea85dc..fb889253c 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_6string_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -20,22 +17,22 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_6string_multi.sh b/tests/results/test_namespace_without_family/01_6string_multi.sh index 8627aaa62..f1cec78e6 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi.sh +++ b/tests/results/test_namespace_without_family/01_6string_multi.sh @@ -15,21 +15,21 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ 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 index 7a2367d36..d0b969822 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi_length.adoc +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The variable. + +| **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. + +| **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 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 index bf6e0515d..33789432e 100644 --- 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 @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The variable. + +| **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. + +| **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 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 index 20c25b16a..5f3071d54 100644 --- 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 @@ -1,24 +1,21 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข 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 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข 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 index 00e4f7723..998797796 100644 --- a/tests/results/test_namespace_without_family/01_6string_multi_length.sh +++ b/tests/results/test_namespace_without_family/01_6string_multi_length.sh @@ -4,15 +4,15 @@ โ”‚ rougail.var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข 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 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ +โ”‚ โ”‚ โ€ข val5 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.adoc b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.adoc index d98fc20da..c2c2106da 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.adoc b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.adoc index 66f4b1b05..727eb016a 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.sh b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.sh index 5bfc3b392..de4f0447f 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.sh b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.sh index a53c0b924..edc9203b5 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.adoc b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.adoc index ff3f9e59b..ac9e5bf17 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.adoc b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.adoc index 11b86040b..ab5b1ee17 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.sh b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.sh index 09b8ad1df..3123d0df8 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.sh index b35337d94..a18f831ca 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_doublequote2.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_quote.adoc b/tests/results/test_namespace_without_family/01_7value_multi_quote.adoc index 49baec1c7..bc25a4b2d 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_quote.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.adoc b/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.adoc index b163f6dc1..71e3e1ad0 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.sh b/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.sh index aa824800b..695f1aeef 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_quote.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_7value_multi_quote.sh b/tests/results/test_namespace_without_family/01_7value_multi_quote.sh index 25399ac1a..7ccdf4071 100644 --- a/tests/results/test_namespace_without_family/01_7value_multi_quote.sh +++ b/tests/results/test_namespace_without_family/01_7value_multi_quote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_8calculation_information_multi.adoc b/tests/results/test_namespace_without_family/01_8calculation_information_multi.adoc index 72f4883ed..f32cd169e 100644 --- a/tests/results/test_namespace_without_family/01_8calculation_information_multi.adoc +++ b/tests/results/test_namespace_without_family/01_8calculation_information_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.adoc index 72f3e0f4a..8e3b368d6 100644 --- a/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.sh b/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.sh index e4a2d6007..f3061b87c 100644 --- a/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_8calculation_information_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc index e4d51e12c..8c1040959 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc +++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "rougail.variable1" |==== diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc index 94f8bbe23..9f38a8275 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "rougail.variable1" |==== diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh index eed133510..24f670607 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh b/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh index b6594dcd4..8caffc90c 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_without_family/01_9choice_variable_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_optional.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_optional.adoc index 4daba5965..d95a2a95a 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_optional.adoc +++ b/tests/results/test_namespace_without_family/01_9choice_variable_optional.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.adoc b/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.adoc index 734fa9266..c153d7f83 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.sh b/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.sh index 4afed137a..e0cc1b1e2 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/01_9choice_variable_optional.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/01_9choice_variable_optional.sh b/tests/results/test_namespace_without_family/01_9choice_variable_optional.sh index 180debf78..497855200 100644 --- a/tests/results/test_namespace_without_family/01_9choice_variable_optional.sh +++ b/tests/results/test_namespace_without_family/01_9choice_variable_optional.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/02_0tags.adoc b/tests/results/test_namespace_without_family/02_0tags.adoc index 4c6d461d3..58703bf71 100644 --- a/tests/results/test_namespace_without_family/02_0tags.adoc +++ b/tests/results/test_namespace_without_family/02_0tags.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test_namespace_without_family/02_0tags.changelog.adoc b/tests/results/test_namespace_without_family/02_0tags.changelog.adoc index 68b516e40..decb545f4 100644 --- a/tests/results/test_namespace_without_family/02_0tags.changelog.adoc +++ b/tests/results/test_namespace_without_family/02_0tags.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test_namespace_without_family/02_0tags.changelog.sh b/tests/results/test_namespace_without_family/02_0tags.changelog.sh index 8d1831658..9cb4dc566 100644 --- a/tests/results/test_namespace_without_family/02_0tags.changelog.sh +++ b/tests/results/test_namespace_without_family/02_0tags.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -11,7 +8,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/02_0tags.sh b/tests/results/test_namespace_without_family/02_0tags.sh index 68dfce542..d2ddb0fa7 100644 --- a/tests/results/test_namespace_without_family/02_0tags.sh +++ b/tests/results/test_namespace_without_family/02_0tags.sh @@ -6,6 +6,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_0type_param.adoc b/tests/results/test_namespace_without_family/04_0type_param.adoc index d09a7593c..6a00de18b 100644 --- a/tests/results/test_namespace_without_family/04_0type_param.adoc +++ b/tests/results/test_namespace_without_family/04_0type_param.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace_without_family/04_0type_param.changelog.adoc b/tests/results/test_namespace_without_family/04_0type_param.changelog.adoc index 3637c45d9..2c52c2755 100644 --- a/tests/results/test_namespace_without_family/04_0type_param.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_0type_param.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace_without_family/04_0type_param.changelog.sh b/tests/results/test_namespace_without_family/04_0type_param.changelog.sh index 28b1c67a2..0b16f7174 100644 --- a/tests/results/test_namespace_without_family/04_0type_param.changelog.sh +++ b/tests/results/test_namespace_without_family/04_0type_param.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_0type_param.sh b/tests/results/test_namespace_without_family/04_0type_param.sh index 9c2cefca5..1addb3845 100644 --- a/tests/results/test_namespace_without_family/04_0type_param.sh +++ b/tests/results/test_namespace_without_family/04_0type_param.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_0type_param_integer.adoc b/tests/results/test_namespace_without_family/04_0type_param_integer.adoc index c64757f54..ff140fddb 100644 --- a/tests/results/test_namespace_without_family/04_0type_param_integer.adoc +++ b/tests/results/test_namespace_without_family/04_0type_param_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.adoc b/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.adoc index 08d21cc4a..cf6c27069 100644 --- a/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.sh b/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.sh index 26403488f..b98dca31b 100644 --- a/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.sh +++ b/tests/results/test_namespace_without_family/04_0type_param_integer.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_0type_param_integer.sh b/tests/results/test_namespace_without_family/04_0type_param_integer.sh index 1b1c4788d..f710b6a3d 100644 --- a/tests/results/test_namespace_without_family/04_0type_param_integer.sh +++ b/tests/results/test_namespace_without_family/04_0type_param_integer.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_1auto_save.adoc b/tests/results/test_namespace_without_family/04_1auto_save.adoc index b4ea6a61f..4aad5ba58 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save.changelog.adoc b/tests/results/test_namespace_without_family/04_1auto_save.changelog.adoc index 6482b16ab..b52ea7484 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save.changelog.sh b/tests/results/test_namespace_without_family/04_1auto_save.changelog.sh index 960fbd591..befac82de 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1auto_save.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc index 2a80d0697..7d7c103dc 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc index a8c2b0467..b80bc16d9 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "rougail.var1" |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh index 02c5612e3..3043112cd 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.adoc index 0dc7acc40..43c718b37 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc index 23271c469..89dc92f87 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.sh b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.sh index 319e1b4b9..35ef2721b 100644 --- a/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1auto_save_and_calculated_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc index 07b66ac3e..e862f2cf5 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc index 4d33cb66b..d8cfb9b6f 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh index 35f3a7fe2..72cd1dc54 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc index 07b66ac3e..e862f2cf5 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc index 4d33cb66b..d8cfb9b6f 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "rougail.var1" has the value "value" -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh index 35f3a7fe2..72cd1dc54 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.adoc index 89c70726c..31c6fff03 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.adoc index 400bfdae4..d5b20771d 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.sh index 5f6bfb088..40175b3b7 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.adoc index 703d5be56..d1d0788e3 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.adoc index ef3bb9a58..f0be404e7 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.sh index f56d94c99..f0123020a 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_4.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.adoc index 940531cf8..e925307be 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.adoc index f49ae60fc..8dc59f05f 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.sh index 96cd3268d..e843f0fbc 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_5.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.adoc index 940531cf8..e925307be 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.adoc b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.adoc index f49ae60fc..8dc59f05f 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.sh b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.sh index 96cd3268d..e843f0fbc 100644 --- a/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.sh +++ b/tests/results/test_namespace_without_family/04_1default_calculation_hidden_6.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation.adoc index 829893a48..cc48dd3b2 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.adoc index 1a8bb841c..23ae9ba6e 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.sh index 564a07953..16f6b8351 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.adoc index 2723bb798..004924987 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.adoc index 5be2cdd53..ed53e57b4 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.sh index cefa3776c..4b6862beb 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.adoc index 3bcce42f9..0ec28b915 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A first variable. + **Default**: the value of condition + **Disabled**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A second variable. + **Default**: the value of condition + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.adoc index 2625008f3..f3ca21cdd 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A first variable. + **Default**: the value of condition + **Disabled**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A second variable. + **Default**: the value of condition + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.sh index 7d5b0de76..720f4a9f3 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_default.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.adoc index c4db00bcb..8a0ea539b 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.adoc index 6566460fc..ddd0cb962 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**rougail.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A first variable. + +| **rougail.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**rougail.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A second variable. + +| **rougail.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A second variable. + **Disabled**: if condition is egal to "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.sh index 0be6146b0..e00399a0d 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.adoc index 0e6c95bd8..36bdbff72 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.adoc index c1c811be5..4cb85efb7 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.sh index b0cb29a6b..b8b7379bf 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc index 6b8a60ad1..2990a769f 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.adoc @@ -1,28 +1,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| Variable | Description +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc index 882f0d636..bc813f93c 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.adoc @@ -2,29 +2,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" -| - -**rougail.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| Variable | Description +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" +| **rougail.var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "rougail.condition" is defined and has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh index bf583e290..9356d0a67 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_optional_default.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc index 4e0e99605..41d05e8ba 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc index f0a0a5fc0..ffc2f20da 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh index 17500a8d2..2c0ef72f8 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc index 20bce60ab..21167951d 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc index 0602944ef..bc96cd288 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh index 073112428..ccfe2e05e 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable10.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc index 20bce60ab..21167951d 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc index 0602944ef..bc96cd288 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh index 073112428..ccfe2e05e 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc index cfe47104d..08afce036 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc index 0a40be2b0..cad052d68 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh index 9213581e0..2c5edd789 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable3.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc index 36d582757..3f8dd220f 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" hasn't the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc index c61bface1..4b16c8422 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" hasn't the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh index c913c850a..8be187b8b 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable4.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.adoc index 94d6fd6f6..d288852fd 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.adoc index 20f311455..7b58fcb63 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.sh index acd551686..3c742a022 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable5.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.adoc index 94d6fd6f6..d288852fd 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.adoc index 20f311455..7b58fcb63 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.sh index acd551686..3c742a022 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable6.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc index 4e0e99605..41d05e8ba 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc index f0a0a5fc0..ffc2f20da 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh index 17500a8d2..2c0ef72f8 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable7.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.adoc index 94d6fd6f6..d288852fd 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.adoc index 20f311455..7b58fcb63 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.sh index acd551686..3c742a022 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable9.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc index 7fa3831ae..db1fa3eff 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc index 2607da104..18b45d905 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh index 2ea411867..2dbcd8c21 100644 --- a/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5disabled_calculation_variable_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation.adoc index 3d861c9b1..49f8488a2 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: no + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: no + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.adoc index d3e7f2287..18b565365 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: no + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: no + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.sh b/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.sh index d6bd00eed..f8c7745a6 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation2.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation2.adoc index 1b7ebd691..2485a0592 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation2.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation2.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: the value of condition + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: the value of condition + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.adoc index a5c5e9f1a..4cec7f6d5 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: the value of condition + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: the value of condition + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.sh b/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.sh index fbbb86159..ba90785dd 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.adoc index faf980d38..3ff233a76 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: returns the condition value + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: returns the condition value + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.adoc b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.adoc index 1e6262633..aaa058d87 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A first variable. + **Default**: returns the condition value + **Hidden**: if condition is yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__hidden__` | A second variable. + **Default**: returns the condition value + **Hidden**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.sh b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.sh index 1151d481a..802c7f62a 100644 --- a/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5hidden_calculation_default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5validators.adoc b/tests/results/test_namespace_without_family/04_5validators.adoc index 3d7a920e4..bcc00b0ab 100644 --- a/tests/results/test_namespace_without_family/04_5validators.adoc +++ b/tests/results/test_namespace_without_family/04_5validators.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test_namespace_without_family/04_5validators.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators.changelog.adoc index 48056c46f..4d2f98baa 100644 --- a/tests/results/test_namespace_without_family/04_5validators.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test_namespace_without_family/04_5validators.changelog.sh b/tests/results/test_namespace_without_family/04_5validators.changelog.sh index 847b2ce57..b265cd540 100644 --- a/tests/results/test_namespace_without_family/04_5validators.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5validators_differ.adoc b/tests/results/test_namespace_without_family/04_5validators_differ.adoc index 5a35ee08d..bfebea880 100644 --- a/tests/results/test_namespace_without_family/04_5validators_differ.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_differ.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/04_5validators_differ.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_differ.changelog.adoc index 689442ba8..091a31b36 100644 --- a/tests/results/test_namespace_without_family/04_5validators_differ.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_differ.changelog.adoc @@ -3,19 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/04_5validators_differ.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_differ.changelog.sh index 00fae3a56..6f979a61d 100644 --- a/tests/results/test_namespace_without_family/04_5validators_differ.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_differ.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi.adoc b/tests/results/test_namespace_without_family/04_5validators_multi.adoc index d6c5f02b4..43a1743cf 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_multi.changelog.adoc index 36a9a45bd..b2a59a282 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_multi.changelog.sh index 8fd5cc790..0413eb4ba 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi.sh b/tests/results/test_namespace_without_family/04_5validators_multi.sh index 21da417af..9d6b4fbac 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi2.adoc b/tests/results/test_namespace_without_family/04_5validators_multi2.adoc index 1765f4a4c..06a8751ef 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi2.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.adoc index 2419dbf41..3b11a17f5 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.sh index 7770358c6..d3306814d 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi2.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,10 +7,10 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi2.sh b/tests/results/test_namespace_without_family/04_5validators_multi2.sh index a4429c6fe..0510fb301 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi2.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi2.sh @@ -5,9 +5,9 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi3.adoc b/tests/results/test_namespace_without_family/04_5validators_multi3.adoc index 79e302fc9..df18d53b8 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi3.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.adoc index cf5ee717e..b1b54c6bc 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.sh index 02957aa5d..1b94ce9e3 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,9 +7,9 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_multi3.sh b/tests/results/test_namespace_without_family/04_5validators_multi3.sh index b09a494d0..314619aea 100644 --- a/tests/results/test_namespace_without_family/04_5validators_multi3.sh +++ b/tests/results/test_namespace_without_family/04_5validators_multi3.sh @@ -5,8 +5,8 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings.adoc b/tests/results/test_namespace_without_family/04_5validators_warnings.adoc index 339728ae8..eaff767a8 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_warnings.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.adoc index 610d7249a..3e0e2f549 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.sh index 6cc3164d4..f57b654b2 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_warnings.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings_all.adoc b/tests/results/test_namespace_without_family/04_5validators_warnings_all.adoc index 6c83ac305..11eb259f0 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings_all.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_warnings_all.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.adoc b/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.adoc index 369da85ec..78ded6e24 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.adoc +++ b/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **rougail.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.sh b/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.sh index c1b29f35a..3e0e78b9c 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.sh +++ b/tests/results/test_namespace_without_family/04_5validators_warnings_all.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/04_5validators_warnings_all.sh b/tests/results/test_namespace_without_family/04_5validators_warnings_all.sh index bfd5f461f..5a84042ff 100644 --- a/tests/results/test_namespace_without_family/04_5validators_warnings_all.sh +++ b/tests/results/test_namespace_without_family/04_5validators_warnings_all.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/05_0multi_not_uniq.adoc b/tests/results/test_namespace_without_family/05_0multi_not_uniq.adoc index 205c8219b..ae07668ad 100644 --- a/tests/results/test_namespace_without_family/05_0multi_not_uniq.adoc +++ b/tests/results/test_namespace_without_family/05_0multi_not_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.adoc b/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.adoc index 9d8b74961..b15a633c4 100644 --- a/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.adoc +++ b/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.sh b/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.sh index 185c2dbaa..825cf2f2b 100644 --- a/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.sh +++ b/tests/results/test_namespace_without_family/05_0multi_not_uniq.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/05_0multi_not_uniq.sh b/tests/results/test_namespace_without_family/05_0multi_not_uniq.sh index eb592f033..027497778 100644 --- a/tests/results/test_namespace_without_family/05_0multi_not_uniq.sh +++ b/tests/results/test_namespace_without_family/05_0multi_not_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/05_0multi_uniq.adoc b/tests/results/test_namespace_without_family/05_0multi_uniq.adoc index 1047c002d..61c00b71c 100644 --- a/tests/results/test_namespace_without_family/05_0multi_uniq.adoc +++ b/tests/results/test_namespace_without_family/05_0multi_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.adoc b/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.adoc index e8050fa96..2525acd72 100644 --- a/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.adoc +++ b/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.sh b/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.sh index 3c4d7aabe..4fc675c74 100644 --- a/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.sh +++ b/tests/results/test_namespace_without_family/05_0multi_uniq.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/05_0multi_uniq.sh b/tests/results/test_namespace_without_family/05_0multi_uniq.sh index f053614a1..f78ea098c 100644 --- a/tests/results/test_namespace_without_family/05_0multi_uniq.sh +++ b/tests/results/test_namespace_without_family/05_0multi_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/12_1auto_save_expert.adoc b/tests/results/test_namespace_without_family/12_1auto_save_expert.adoc index e21062354..3e6ebd55f 100644 --- a/tests/results/test_namespace_without_family/12_1auto_save_expert.adoc +++ b/tests/results/test_namespace_without_family/12_1auto_save_expert.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.adoc b/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.adoc index ee9adb3f4..0c272f11c 100644 --- a/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.adoc +++ b/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.sh b/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.sh index a9b2abb93..d9cff52b0 100644 --- a/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.sh +++ b/tests/results/test_namespace_without_family/12_1auto_save_expert.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_0redefine_description.adoc b/tests/results/test_namespace_without_family/16_0redefine_description.adoc index 6f0db5a2b..d96cacbd4 100644 --- a/tests/results/test_namespace_without_family/16_0redefine_description.adoc +++ b/tests/results/test_namespace_without_family/16_0redefine_description.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test_namespace_without_family/16_0redefine_description.changelog.adoc b/tests/results/test_namespace_without_family/16_0redefine_description.changelog.adoc index 441325705..69dc99e71 100644 --- a/tests/results/test_namespace_without_family/16_0redefine_description.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_0redefine_description.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test_namespace_without_family/16_0redefine_description.changelog.sh b/tests/results/test_namespace_without_family/16_0redefine_description.changelog.sh index 15fb89a3b..7edf9ffcb 100644 --- a/tests/results/test_namespace_without_family/16_0redefine_description.changelog.sh +++ b/tests/results/test_namespace_without_family/16_0redefine_description.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.adoc b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.adoc index f435068d2..146ba60ff 100644 --- a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.adoc +++ b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.adoc b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.adoc index db1868828..87ef82237 100644 --- a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.sh b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.sh index 2b4674a6f..7839b4be3 100644 --- a/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/16_2family_redefine_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.adoc b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.adoc index f435068d2..146ba60ff 100644 --- a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.adoc +++ b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.adoc b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.adoc index db1868828..87ef82237 100644 --- a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.sh b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.sh index 2b4674a6f..7839b4be3 100644 --- a/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.sh +++ b/tests/results/test_namespace_without_family/16_3family_empty_at_ends.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5exists_nonexists.adoc b/tests/results/test_namespace_without_family/16_5exists_nonexists.adoc index 81aa29be4..093847b1e 100644 --- a/tests/results/test_namespace_without_family/16_5exists_nonexists.adoc +++ b/tests/results/test_namespace_without_family/16_5exists_nonexists.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.adoc b/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.adoc index aba44fc19..2f32aeb6b 100644 --- a/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.sh b/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.sh index a0e9d5601..32baf2bb2 100644 --- a/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5exists_nonexists.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_calculation.adoc b/tests/results/test_namespace_without_family/16_5redefine_calculation.adoc index 10a78d6e3..88b5f6fdb 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_calculation.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.adoc index 4c9652cc9..7a24a98ef 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.sh index bbd51cfe5..5ff72ad46 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_choice.adoc b/tests/results/test_namespace_without_family/16_5redefine_choice.adoc index f0a391808..3f8799bb5 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_choice.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_choice.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.adoc index 9cb846aa8..0e293347a 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.sh index c219d79b0..8390ef46d 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_choice.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_5redefine_choice.sh b/tests/results/test_namespace_without_family/16_5redefine_choice.sh index 45ecc6467..dc2800b30 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_choice.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_choice.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_5redefine_default.adoc b/tests/results/test_namespace_without_family/16_5redefine_default.adoc index 5011dab3f..5d4dd5f45 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_default.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_default.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_default.changelog.adoc index 985c510a5..9ede590ba 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_default.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_default.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_default.changelog.sh index 6e3c605e5..48695e8a2 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_default.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.adoc b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.adoc index 94d6fd6f6..d288852fd 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.adoc index 20f311455..7b58fcb63 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.sh index acd551686..3c742a022 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_family.adoc b/tests/results/test_namespace_without_family/16_5redefine_family.adoc index 90fecd8ca..c7e32d366 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_family.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_family.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_family.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_family.changelog.adoc index 282bd4731..4183ac9b2 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_family.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_family.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_family.changelog.sh index 51fac77df..4b6a84cc0 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_family.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_family.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_help.adoc b/tests/results/test_namespace_without_family/16_5redefine_help.adoc index 27db9af5c..fb792d5c7 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_help.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_help.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_help.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_help.changelog.adoc index e8d3db8f1..51a2d6438 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_help.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_help.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_help.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_help.changelog.sh index 70e0f30b6..c2af03836 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_help.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_help.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5redefine_multi.adoc b/tests/results/test_namespace_without_family/16_5redefine_multi.adoc index 1047c002d..61c00b71c 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_multi.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.adoc index e8050fa96..2525acd72 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.sh index 3c4d7aabe..4fc675c74 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_multi.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_5redefine_multi.sh b/tests/results/test_namespace_without_family/16_5redefine_multi.sh index f053614a1..f78ea098c 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_multi.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_multi.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.adoc b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.adoc index c835eb363..7326c44a9 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.adoc b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.adoc index 2e4cafb52..a5fb3be7a 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.sh b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.sh index 6f7f92152..e560ce19c 100644 --- a/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5redefine_remove_disable_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_5test_redefine.adoc b/tests/results/test_namespace_without_family/16_5test_redefine.adoc index 9dd5073ae..15b4a1fd5 100644 --- a/tests/results/test_namespace_without_family/16_5test_redefine.adoc +++ b/tests/results/test_namespace_without_family/16_5test_redefine.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5test_redefine.changelog.adoc b/tests/results/test_namespace_without_family/16_5test_redefine.changelog.adoc index 4e37e7f46..07a92a3cc 100644 --- a/tests/results/test_namespace_without_family/16_5test_redefine.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_5test_redefine.changelog.adoc @@ -2,25 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test_namespace_without_family/16_5test_redefine.changelog.sh b/tests/results/test_namespace_without_family/16_5test_redefine.changelog.sh index af34ea8a9..9b5775210 100644 --- a/tests/results/test_namespace_without_family/16_5test_redefine.changelog.sh +++ b/tests/results/test_namespace_without_family/16_5test_redefine.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16_6choice_redefine.adoc b/tests/results/test_namespace_without_family/16_6choice_redefine.adoc index ac969183e..35abfc5a6 100644 --- a/tests/results/test_namespace_without_family/16_6choice_redefine.adoc +++ b/tests/results/test_namespace_without_family/16_6choice_redefine.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.adoc b/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.adoc index fd08f1675..42ed1ef3d 100644 --- a/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.sh b/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.sh index ea9bd1ff4..db8665a92 100644 --- a/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.sh +++ b/tests/results/test_namespace_without_family/16_6choice_redefine.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_6choice_redefine.sh b/tests/results/test_namespace_without_family/16_6choice_redefine.sh index 0c99743cb..97ce79978 100644 --- a/tests/results/test_namespace_without_family/16_6choice_redefine.sh +++ b/tests/results/test_namespace_without_family/16_6choice_redefine.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/16_6exists_redefine_family.adoc b/tests/results/test_namespace_without_family/16_6exists_redefine_family.adoc index 813cec25c..8317de673 100644 --- a/tests/results/test_namespace_without_family/16_6exists_redefine_family.adoc +++ b/tests/results/test_namespace_without_family/16_6exists_redefine_family.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.adoc b/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.adoc index b8bfa63f8..fcfad3dec 100644 --- a/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.sh b/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.sh index 15fe75b8e..615f92642 100644 --- a/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.sh +++ b/tests/results/test_namespace_without_family/16_6exists_redefine_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/16exists_exists.adoc b/tests/results/test_namespace_without_family/16exists_exists.adoc index fd91b8159..4192a0b4e 100644 --- a/tests/results/test_namespace_without_family/16exists_exists.adoc +++ b/tests/results/test_namespace_without_family/16exists_exists.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test_namespace_without_family/16exists_exists.changelog.adoc b/tests/results/test_namespace_without_family/16exists_exists.changelog.adoc index d95738f39..e8bb3a31e 100644 --- a/tests/results/test_namespace_without_family/16exists_exists.changelog.adoc +++ b/tests/results/test_namespace_without_family/16exists_exists.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test_namespace_without_family/16exists_exists.changelog.sh b/tests/results/test_namespace_without_family/16exists_exists.changelog.sh index 32d6640cc..8bbcaf956 100644 --- a/tests/results/test_namespace_without_family/16exists_exists.changelog.sh +++ b/tests/results/test_namespace_without_family/16exists_exists.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0family_append.adoc b/tests/results/test_namespace_without_family/20_0family_append.adoc index 55cb9f6f5..9a69163af 100644 --- a/tests/results/test_namespace_without_family/20_0family_append.adoc +++ b/tests/results/test_namespace_without_family/20_0family_append.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0family_append.changelog.adoc b/tests/results/test_namespace_without_family/20_0family_append.changelog.adoc index e9b7a0710..76be7cc8f 100644 --- a/tests/results/test_namespace_without_family/20_0family_append.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0family_append.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0family_append.changelog.sh b/tests/results/test_namespace_without_family/20_0family_append.changelog.sh index d004b9eb3..2f7f4a9f8 100644 --- a/tests/results/test_namespace_without_family/20_0family_append.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0family_append.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0multi_family.adoc b/tests/results/test_namespace_without_family/20_0multi_family.adoc index 7086cf993..e3f94cfcb 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family.changelog.adoc b/tests/results/test_namespace_without_family/20_0multi_family.changelog.adoc index cc3bf251a..eef15433e 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family.changelog.sh b/tests/results/test_namespace_without_family/20_0multi_family.changelog.sh index a20bba4a4..fbae29dc5 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0multi_family.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0multi_family_basic.adoc b/tests/results/test_namespace_without_family/20_0multi_family_basic.adoc index 60f07206a..692d97601 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_basic.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_basic.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.adoc b/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.adoc index 10bd48182..42fc4a5d5 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.sh b/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.sh index 08ab04148..6530d491b 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0multi_family_basic.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0multi_family_expert.adoc b/tests/results/test_namespace_without_family/20_0multi_family_expert.adoc index 1375fe0a5..0ce4f5ada 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_expert.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_expert.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.adoc b/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.adoc index a0d0cb572..db1775faf 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.sh b/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.sh index 9cdaebf31..87e7de10e 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0multi_family_expert.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0multi_family_order.adoc b/tests/results/test_namespace_without_family/20_0multi_family_order.adoc index 2039462ae..883fb44f3 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_order.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_order.adoc @@ -1,25 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.adoc b/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.adoc index 6d0defe56..47d0330b3 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.adoc @@ -2,26 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**rougail.family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **rougail.family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.sh b/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.sh index 6f7ef1d42..f7534acb8 100644 --- a/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0multi_family_order.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.adoc b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.adoc index b0d7f7a6a..3d0261797 100644 --- a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.adoc +++ b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.adoc b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.adoc index f2e97980b..ef67fdaf1 100644 --- a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.sh b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.sh index 2a5ab5756..97e4585f0 100644 --- a/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.sh +++ b/tests/results/test_namespace_without_family/20_0validators_differ_redefine.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.adoc b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.adoc index 3fb409ed8..1725b24f1 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **rougail.my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**rougail.my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **rougail.my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.adoc b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.adoc index 00732b7fb..e224ecc17 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.adoc @@ -3,19 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **rougail.my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**rougail.my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **rougail.my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.sh b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.sh index 789d0994e..10bede3d1 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.sh +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.sh index b9721d9b6..e4beeb42a 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_dynamic.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.adoc b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.adoc index 7e6088c88..3ab66c3a3 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.adoc +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **rougail.my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.adoc b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.adoc index 9f1b8e896..036e94cba 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.adoc @@ -2,11 +2,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **rougail.my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.sh b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.sh index 0a354ae65..cab6ee43f 100644 --- a/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/20_2family_looks_like_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.adoc b/tests/results/test_namespace_without_family/20_9default_information_parent.adoc index 04a398aa7..aa9955bfc 100644 --- a/tests/results/test_namespace_without_family/20_9default_information_parent.adoc +++ b/tests/results/test_namespace_without_family/20_9default_information_parent.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.family" +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.family" |==== diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc index 15f83fffc..67939d492 100644 --- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc +++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**rougail.family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "rougail.family" +| Variable | Description +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **rougail.family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "rougail.family" |==== diff --git a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh index 551c1293f..ba2eae8c1 100644 --- a/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh +++ b/tests/results/test_namespace_without_family/20_9default_information_parent.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition.adoc index 6c5eb7c14..c8702eeb0 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.adoc index 1cd2b099a..82fd678a4 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.sh index fcc4317ee..f9f19e1c2 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.adoc index 1689e4789..56f619b24 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A conditional variable. + **Default**: false -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.adoc index a383e4eac..5f5ab05bb 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A conditional variable. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A conditional variable. + **Default**: false -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.sh index 249bab4b6..aef8bc341 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.adoc index 8ec5b1d5d..b3ab8abe4 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.adoc index 110f40027..6947d6466 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.sh index 09e5f18a3..cebb6c528 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.adoc index 2d98adcd2..c73620ed5 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc index 2e5dbdcee..dc2ea0ae7 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true -| - -**rougail.family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **rougail.family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh index 6b6e5d559..28166ecc6 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.adoc index c1451a2cf..1117afa6b 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A first conditional variable. + +| **rougail.condition1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A first conditional variable. + **Default**: false -| - -**rougail.condition2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second conditional variable. + +| **rougail.condition2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second conditional variable. + **Default**: false -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A variable. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A variable. + **Hidden**: if condition2 is false |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.adoc index c8b3d2a27..355afde53 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A first conditional variable. + +| **rougail.condition1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A first conditional variable. + **Default**: false -| - -**rougail.condition2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second conditional variable. + +| **rougail.condition2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second conditional variable. + **Default**: false -| - -**rougail.family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A variable. + +| **rougail.family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A variable. + **Hidden**: if condition2 is false |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.sh index 23feb0e2a..db67648bb 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_condition_with_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.adoc index ceb921b07..e4882720f 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc index d3797afeb..4bcc867e0 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**rougail.family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **rougail.family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh index 3c9793d54..92b3592eb 100644 --- a/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.adoc index f0f33dc66..b74f5b345 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.adoc +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.adoc index 5effa7bc9..7522659a9 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.sh b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.sh index dbc6ef5f4..e47c059ca 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc index fd36be440..ebe7cfaf3 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc index 882de4bee..f4dac39df 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "rougail.condition" has the value "true" |==== diff --git a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh index 4e816bf42..6541c79b1 100644 --- a/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/24_0family_mandatory_condition_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/24_7validators_variable_optional.adoc b/tests/results/test_namespace_without_family/24_7validators_variable_optional.adoc index 490650299..3e4990435 100644 --- a/tests/results/test_namespace_without_family/24_7validators_variable_optional.adoc +++ b/tests/results/test_namespace_without_family/24_7validators_variable_optional.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **rougail.general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**rougail.general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **rougail.general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.adoc b/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.adoc index b3f54a786..652cae8e2 100644 --- a/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.adoc @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **rougail.general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**rougail.general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **rougail.general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.sh b/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.sh index ad95f2a6d..d13bc1694 100644 --- a/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/24_7validators_variable_optional.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test_namespace_without_family/24_7validators_variable_optional.sh b/tests/results/test_namespace_without_family/24_7validators_variable_optional.sh index 517c4ef38..134f59dfb 100644 --- a/tests/results/test_namespace_without_family/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_without_family/24_7validators_variable_optional.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership.adoc b/tests/results/test_namespace_without_family/40_0leadership.adoc index 11dc0d4ee..e0ecd7efc 100644 --- a/tests/results/test_namespace_without_family/40_0leadership.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership.changelog.adoc index fac4467bd..c159d8db8 100644 --- a/tests/results/test_namespace_without_family/40_0leadership.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership.changelog.adoc @@ -2,21 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership.changelog.sh index 1f7cfda30..6a1f2e8c4 100644 --- a/tests/results/test_namespace_without_family/40_0leadership.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_0leadership_diff_name.adoc b/tests/results/test_namespace_without_family/40_0leadership_diff_name.adoc index 75b135f58..7e3c2dec5 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_diff_name.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_diff_name.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.adoc index 2ce038f63..03f401947 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.adoc @@ -2,21 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.sh index c69ac4f7a..7d739a7af 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_diff_name.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.adoc index 1a07110a8..c0216dd11 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.adoc @@ -1,22 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.adoc index 72aae9655..3bda7f18e 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.adoc @@ -3,22 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.sh index 358f0d848..43dc29e65 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.adoc index b61f0a168..bf791bbcd 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower2. + **Default**: * value1 diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.adoc index 3723810c5..d525d826b 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower2. + **Default**: * value1 diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.sh index aef7d95df..db7fffd45 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.changelog.sh @@ -1,22 +1,19 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ A follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.sh index 9cbf7bcd4..784eed2ab 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti.sh @@ -3,14 +3,14 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ A follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc index 407ef802d..d5c19fd93 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower2. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc index 913824a36..8f3d1efa0 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The leader. + **Default**: * leader -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower1. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower1. + **Default**: * value -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The follower2. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The follower2. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh index ac0ffba0a..9793facb8 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.changelog.sh @@ -1,18 +1,15 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ The leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ The follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ The follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh index 1ac45c432..0d3cc4568 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_submulti_calculation.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ The leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - leader โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข leader โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ The follower1. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower2 โ”‚ The follower2. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.adoc index 73be5619f..83625b088 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.adoc index c2eb357b8..1ea7864e9 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.sh index 094fc18d2..30a11ebea 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_follower_default_value.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc index f8e14f687..2bba6b51c 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "rougail.leadership.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc index 832a7ceb6..5fab369b5 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "rougail.leadership.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh index e2fb8a040..2cbfd0dab 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh index 2c7fc83b0..aa616f93c 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.adoc index 010300062..3e644ed72 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.adoc @@ -1,26 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **rougail.general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non -| - -**rougail.general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**rougail.general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**rougail.general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **rougail.general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **rougail.general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **rougail.general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.adoc index 750db1eea..3b7c3209f 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.adoc @@ -3,26 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **rougail.general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non -| - -**rougail.general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**rougail.general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**rougail.general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **rougail.general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **rougail.general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **rougail.general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.sh index 7fb5d5e28..15903a0ec 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_leader_not_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_0leadership_reduce.adoc b/tests/results/test_namespace_without_family/40_0leadership_reduce.adoc index 208682693..1b52a7eb0 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_reduce.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_reduce.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -16,10 +13,7 @@ A leader. + * val1 * val2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.adoc b/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.adoc index 4ba2f5ca9..9fe6c3fe1 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -18,10 +15,7 @@ A leader. + * val1 * val2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.sh b/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.sh index e43f2747d..89f72d35c 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_reduce.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_0leadership_reduce.sh b/tests/results/test_namespace_without_family/40_0leadership_reduce.sh index 055b14152..e66c304da 100644 --- a/tests/results/test_namespace_without_family/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_without_family/40_0leadership_reduce.sh @@ -3,12 +3,12 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_1leadership_append_follower.adoc b/tests/results/test_namespace_without_family/40_1leadership_append_follower.adoc index 4932a0180..8d8b5334d 100644 --- a/tests/results/test_namespace_without_family/40_1leadership_append_follower.adoc +++ b/tests/results/test_namespace_without_family/40_1leadership_append_follower.adoc @@ -1,25 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**rougail.leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **rougail.leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.adoc b/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.adoc index dfbecc803..0a54a8571 100644 --- a/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.adoc @@ -2,26 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**rougail.leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **rougail.leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.sh b/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.sh index e86f7e29d..9e557fdcd 100644 --- a/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.sh +++ b/tests/results/test_namespace_without_family/40_1leadership_append_follower.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.adoc index 88dc80158..5f2f6bdcf 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.adoc index 3d498870b..31cf46efb 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.sh index 6f2afa714..600d12753 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.sh index 7aa892a16..b3c12fb58 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.adoc index 88dc80158..5f2f6bdcf 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.adoc index 3d498870b..31cf46efb 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.sh index 6f2afa714..600d12753 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.sh index 7aa892a16..b3c12fb58 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_index_2.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.adoc index eca482820..b6c28adfb 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: returns index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.adoc b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.adoc index afd87d588..86fb31c78 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: returns index |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.sh index a481bbabc..e508be7d5 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: returns index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.sh index 21e8f2566..e6c3ded16 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_calculation_param_index.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: returns index โ”‚ diff --git a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.adoc b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.adoc index c90f8b6f5..d92a857d6 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.adoc @@ -1,21 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + -**Default**: returns val1 and val2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + +**Default**: returns val1 and val2 +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second follower. |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.adoc b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.adoc index d161e93f5..11696ebea 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.adoc @@ -2,22 +2,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + -**Default**: returns val1 and val2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first follower. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second follower. +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + +**Default**: returns val1 and val2 +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first follower. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second follower. |==== diff --git a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.sh b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.sh index 51f6e8aac..09b47cf1a 100644 --- a/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/40_2leadership_leader_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.adoc b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.adoc index dae00766d..7a6663334 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.adoc +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.adoc b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.adoc index 03e91f9a2..0b761c9d4 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.sh b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.sh index 82b2aeb26..f47cfd748 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -16,6 +13,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.sh b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.sh index 7418cf41e..85b346c2a 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi.sh @@ -11,5 +11,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.adoc index 1579393d6..d036ed36b 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc index 4a55f3e6a..b3b86568b 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**rougail.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **rougail.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh index 3b2e02a90..1735e45d8 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -16,6 +13,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.sh index 4fdc60b6e..3f9cbe29f 100644 --- a/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_namespace_without_family/40_6leadership_follower_multi_no_mandatory.sh @@ -11,5 +11,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean.adoc b/tests/results/test_namespace_without_family/40_8calculation_boolean.adoc index 49f3daebb..6055728d5 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **rougail.multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**rougail.multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **rougail.multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.adoc index 5e84db17e..f51cc4d92 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **rougail.multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**rougail.multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **rougail.multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.sh index 2baedb70f..48477f3a2 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.adoc b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.adoc index 052408f7f..0755a9b05 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second variable. + **Default**: return false if the value of var1 is "no" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.adoc index b12661e14..f9ca64466 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: yes -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A second variable. + **Default**: return false if the value of var1 is "no" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.sh index a571e0869..b5f312954 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_boolean_return_none.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_8calculation_integer.adoc b/tests/results/test_namespace_without_family/40_8calculation_integer.adoc index b7b92ef4a..3b53271e4 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_integer.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_integer.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.int1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -First integer variable. + +| **rougail.int1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | First integer variable. + **Default**: if bool returns 1 otherwise return 2 -| - -**rougail.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -Second integer variable. + +| **rougail.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | Second integer variable. + **Default**: if bool returns 3 otherwise return 4 |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.adoc index a15f6834a..082738696 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **rougail.bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**rougail.int1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -First integer variable. + +| **rougail.int1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | First integer variable. + **Default**: if bool returns 1 otherwise return 2 -| - -**rougail.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -Second integer variable. + +| **rougail.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | Second integer variable. + **Default**: if bool returns 3 otherwise return 4 |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.sh index 5b7c10efc..c4c8b326b 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_integer.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc index 75b507755..f9afc6780 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "rougail.var2" * the value of the variable "rougail.var3" -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc index 91247df8b..b1fd72d34 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.adoc @@ -3,26 +3,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "rougail.var2" * the value of the variable "rougail.var3" -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**rougail.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **rougail.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh index 173b1c823..6f1b4df02 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh index 915631c48..01af22196 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc index 2488ba357..2860ddb1f 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "rougail.var" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc index 8ed8a9613..15d1b5b45 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "rougail.var" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh index 9dc689d6c..e629caa5d 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc index 7eba1b846..9b85ecaca 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.fam1.var" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc index a09fcd1cb..5b42b2449 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**rougail.fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.fam1.var" |==== diff --git a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh index aa7d07049..b4385d837 100644 --- a/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh +++ b/tests/results/test_namespace_without_family/40_8calculation_multi_variable_parent2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc index 2952124f6..ca0e90137 100644 --- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "rougail.leadership.leader" diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc index 42b33a751..1818b4fa6 100644 --- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "rougail.leadership.leader" diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh index e825d2a39..bcd2a6050 100644 --- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh index 3573d9b9e..421b62119 100644 --- a/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_namespace_without_family/40_9calculation_variable_leader_follower_multi_inside.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.adoc index 6c91194c0..6c819fbc7 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc index e0e46e7ac..aa32d0ffd 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh index 6ef2a398e..5ce833cc8 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.sh index 26333a1f6..0fd7f1c67 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-first.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.adoc index 6c91194c0..6c819fbc7 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc index e0e46e7ac..aa32d0ffd 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh index 6ef2a398e..5ce833cc8 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.sh index 26333a1f6..0fd7f1c67 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-last.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc index 27cddf02e..ff25fb49c 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a -* b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "rougail.leader.follower" +* b +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "rougail.leader.follower" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc index 5f81de829..57189c0d5 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a -* b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - -| - -**rougail.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "rougail.leader.follower" +* b +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | +| **rougail.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "rougail.leader.follower" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh index d9ae24288..eaee44cf5 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh index dad4a80f6..fb39cff23 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc index 413fc06bd..df60d6ec1 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc index 0a9fc52c5..df9a59104 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.follower1" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh index 4f2b434b4..6eaf7a645 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh index 7c2ab5dcb..c4f8e4a89 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.adoc index 92feafdfb..40239f8f4 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc index 97f7c694b..477c6c349 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh index e562ba813..a731cd6d7 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.sh index a80bcbd7d..d82fc6905 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-first.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.adoc index 92feafdfb..40239f8f4 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc index 97f7c694b..477c6c349 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh index e562ba813..a731cd6d7 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.sh index a80bcbd7d..d82fc6905 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader-last.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc index e95fe5fcd..64cc06934 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc index 9a5e58289..6b4b09687 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "rougail.leader.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh index 704d5b34a..aa9d6d378 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh index 28489e2a5..b3c3ad733 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-outside-leader.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc index e8b09d4c6..a5de3af84 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 * value2 -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.calculate" -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc index 4ef5bb70b..92d92749e 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **rougail.calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 * value2 -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.calculate" -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh index 9fe0e66cc..ae4c127f2 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh index e931b8f4d..32717b8df 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc index d61cfc77e..271bfc43d 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.adoc @@ -1,31 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.leadership_1.follower" -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc index dbc765947..559904796 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc @@ -3,31 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "rougail.leadership_1.follower" -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh index 5249c2bb3..97a86429b 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh index 4b48c74aa..2a96c442b 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 2227f9631..4eb381d8a 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -1,34 +1,22 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "rougail.leadership_1.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc index a026b7e43..823b3d69a 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc @@ -3,34 +3,22 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**rougail.leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **rougail.leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**rougail.leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **rougail.leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "rougail.leadership_1.leader" |==== diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh index ca8633f20..676067801 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh @@ -1,23 +1,20 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh index 904936cab..d4caa2cad 100644 --- a/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -3,16 +3,16 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/41_0choice_leader.adoc b/tests/results/test_namespace_without_family/41_0choice_leader.adoc index 894652650..8f4f5eb6e 100644 --- a/tests/results/test_namespace_without_family/41_0choice_leader.adoc +++ b/tests/results/test_namespace_without_family/41_0choice_leader.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/41_0choice_leader.changelog.adoc b/tests/results/test_namespace_without_family/41_0choice_leader.changelog.adoc index 825a134bb..df075019c 100644 --- a/tests/results/test_namespace_without_family/41_0choice_leader.changelog.adoc +++ b/tests/results/test_namespace_without_family/41_0choice_leader.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test_namespace_without_family/41_0choice_leader.changelog.sh b/tests/results/test_namespace_without_family/41_0choice_leader.changelog.sh index 07135ab33..735cef491 100644 --- a/tests/results/test_namespace_without_family/41_0choice_leader.changelog.sh +++ b/tests/results/test_namespace_without_family/41_0choice_leader.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/41_0choice_leader.sh b/tests/results/test_namespace_without_family/41_0choice_leader.sh index 3805381ca..048e4a92d 100644 --- a/tests/results/test_namespace_without_family/41_0choice_leader.sh +++ b/tests/results/test_namespace_without_family/41_0choice_leader.sh @@ -7,7 +7,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.adoc b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.adoc index 622ac5c68..50b403d6d 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.adoc +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.adoc @@ -1,25 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.adoc b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.adoc index 0bf4a835a..74fa6277b 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.adoc @@ -3,25 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.sh b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.sh index 19b0cb54a..9aa07fdc8 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.sh +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -11,7 +8,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory    โ”‚ Disabled: if condition is yes โ”‚ diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.sh index 754d93194..8119ba6ed 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower.sh @@ -6,7 +6,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory    โ”‚ Disabled: if condition is yes โ”‚ diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.adoc b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.adoc index af19065fd..c5151ccd9 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.adoc b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.adoc index 3777f8b54..5ae63bb9d 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **rougail.leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**rougail.leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.sh b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.sh index 6280ebb40..e2112e97d 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.sh +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.sh index 654e3ab4b..bc89764a1 100644 --- a/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_namespace_without_family/44_4disabled_calcultion_follower_index.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory.adoc b/tests/results/test_namespace_without_family/44_4leadership_mandatory.adoc index a9561dc55..4b8e465e1 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory.adoc +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.adoc b/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.adoc index 7daf80921..5c6d7c059 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.sh b/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.sh index 2316dea30..b3a91fb07 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.sh +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.adoc b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.adoc index f21078f02..9aed45b1c 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.adoc b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.adoc index bbe2697ca..8a77b47b9 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.sh b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.sh index bfb59161e..b275a0a9f 100644 --- a/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.sh +++ b/tests/results/test_namespace_without_family/44_4leadership_mandatory_follower.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.adoc index 11ab4eecb..8720cc4c5 100644 --- a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.adoc @@ -1,21 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc index de37e09f1..072257426 100644 --- a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc @@ -3,21 +3,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.sh b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.sh index 87e451e8c..cbab49000 100644 --- a/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/44_5leadership_leader_hidden_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.adoc index 6f8d878c6..a4abc304e 100644 --- a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.adoc @@ -1,22 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc index b8cf2d3eb..2e289ba1c 100644 --- a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc @@ -3,22 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.sh b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.sh index f6dfd215b..e6b6fcb09 100644 --- a/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.sh +++ b/tests/results/test_namespace_without_family/44_6leadership_follower_disabled_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc index a4ead2767..c22fadc0f 100644 --- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc +++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: the value of the variable "rougail.leader.leader" + **Disabled**: if the value of "leader" is "a" |==== diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc index c1650b3ce..3da47468e 100644 --- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc +++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b -| - -**rougail.leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **rougail.leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: the value of the variable "rougail.leader.leader" + **Disabled**: if the value of "leader" is "a" |==== diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh index 8505e3b02..f730976ad 100644 --- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh +++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh index 6962f2bed..cba4f968d 100644 --- a/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh +++ b/tests/results/test_namespace_without_family/44_9calculated_default_leadership_leader.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.leader.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic.adoc index c2b4ae11a..0ba7f86f0 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.adoc index 06b0ea43d..9b946e1a6 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.sh index 27696f931..979f2e108 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic.sh b/tests/results/test_namespace_without_family/60_0family_dynamic.sh index e4054704b..bcc863665 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.adoc index f3ed12502..2331ab152 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.adoc index d841b10a3..407d02f28 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.sh index 5661ff408..48049bad2 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ Dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.sh index bb573814a..a407a2f4a 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ Dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.adoc index d8086b8e1..b94be48eb 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.adoc index b01f09335..8937024d7 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -Dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | Dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.sh index 6d04aede0..03152c438 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ Dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.sh index 6831ffc54..eb8357e02 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ Dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.adoc index b398b8ef5..f36150ec8 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.adoc index 1f4e6cde0..e990df8c6 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.sh index a695551a6..fb524fc59 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dyn variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.sh index 6cc2af207..7ddc29de0 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dyn variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.adoc index adcfb131d..df9165f1b 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.adoc index 8de4a3d75..fdd81fc29 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dyn variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dyn variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.sh index ac7411070..e63d82a62 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dyn variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.sh index 00a170ba2..23acbf4d1 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_0_type_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dyn variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.adoc index 81f880fac..f21aca573 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.adoc index 1cfffade3..d24b52cce 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.sh index c2fa521ea..de51967f9 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.sh index 12ec76ee6..4f9f331a1 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.adoc index 4a5ff1a71..ed87f7dcf 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.adoc index c6b0d7d92..49dc163af 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.sh index 48b7cecb6..e278c8ef7 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.sh index dad4c062d..050dfca5a 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_1_1_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.adoc index fb96cf50a..eeed6ac88 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.adoc index 3b5c519bf..fc45b6e2a 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.sh index 12ec1ddbc..9435e4b6d 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_empty.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.adoc index c78f471b2..18ae4cf30 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 * val.2 -| - -**rougail.dyn__val_1__.var1** + +| **rougail.dyn__val_1__.var1** + **rougail.dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.dyn__val_1__.var2** + +| **rougail.dyn__val_1__.var2** + **rougail.dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.adoc index 4f2d334b5..243bec242 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 * val.2 -| - -**rougail.dyn__val_1__.var1** + +| **rougail.dyn__val_1__.var1** + **rougail.dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.dyn__val_1__.var2** + +| **rougail.dyn__val_1__.var2** + **rougail.dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.sh index d00c16770..a00b44fb2 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval_1.var1 โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval_2.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.sh index cbf460ef9..2d16d7784 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_forbidden_char.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval_1.var1 โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval_2.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc index 782854860..2d3bd80ce 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * 1 * 2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.var |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc index 8ee7da453..109666ca2 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * 1 * 2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.var |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh index 7e4aad566..fd82d730e 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh index fd834a93a..745111657 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_integer_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc index d4d6e66a7..83b997952 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * 1 * 2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.var |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc index 1af405340..3735b056b 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * 1 * 2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get the value of rougail.dyn1.var |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh index 327e63452..40424401a 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh index 64cee8fc7..7fa0fe78b 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_jinja_number.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.adoc index 37283b905..2e93ec49c 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.adoc index a41c9ebc8..b3b463fa1 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.sh index a50875d4d..52272ed30 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.sh index 4499a86ab..dbc8c3af1 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.adoc index f08477957..e39414bb8 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.adoc index e126f57fa..b33a610b9 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.sh index 3bafcf465..df3ab7a28 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.sh index bdae8c6e6..521994132 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_no_description_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.adoc index 62955b694..1de0ff24d 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.adoc index 43f1382f9..cff5fd64d 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.adoc @@ -2,12 +2,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.sh index 8f397766b..b777a8ef7 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_source_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_static.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_static.adoc index 9b263bd09..ee8856a22 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_static.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_static.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.adoc index e6a304a05..008b662c6 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.adoc @@ -2,12 +2,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.sh index 30b9d0b17..00a926440 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_static.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_test.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_test.adoc index 0423a24ec..879d037c4 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_test.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_test.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.adoc index dd27bd86f..a934c3cf1 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.sh index 8e43c020f..0b1a02857 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_test.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_test.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_test.sh index 0ca3ff468..4ec084d8e 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_test.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.adoc index e6ee673ad..6019197db 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 -* VAL2 -| - -**rougail.dyn__val1__.var** + +* VAL2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.adoc index 27a36f7be..60a57b110 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 -* VAL2 -| - -**rougail.dyn__val1__.var** + +* VAL2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.sh index fc1b5ab78..54bef6599 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.sh index 43bef0e43..5af663486 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_upper_char.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.adoc index 136cc7005..120257bf8 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + -**Default**: val +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.adoc index dfbeda26d..cbc8f3ad8 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. -| - -**rougail.dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + -**Default**: val +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. +| **rougail.dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.sh index e00fda5ac..7f7a70b79 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_empty.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.adoc index 1ea89db51..db59f0e3f 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.adoc @@ -1,12 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__a__.var** + +| **rougail.dyn__a__.var** + **rougail.dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.adoc index b034e2a3c..fed575af8 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.adoc @@ -3,12 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__a__.var** + +| **rougail.dyn__a__.var** + **rougail.dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.sh index e4937ea2e..659cca36f 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.adoc index 3dc7384b7..b81dc7e99 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.adoc index cc99ae3f4..0b42d324d 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.sh index bb55ca417..3cb576285 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ rougail.dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.sh index d449bf70f..a2ce473f5 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ rougail.dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.adoc index 804b8f793..4ed2d943a 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc index 464eca9c7..b2038e034 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh index 6b037e675..0bcf250dc 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ rougail.dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.sh index 9b0d363b9..2f6ca24b7 100644 --- a/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace_without_family/60_0family_dynamic_variable_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ rougail.dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_namespace_without_family/60_0family_mode.adoc b/tests/results/test_namespace_without_family/60_0family_mode.adoc index a47556e54..b79299480 100644 --- a/tests/results/test_namespace_without_family/60_0family_mode.adoc +++ b/tests/results/test_namespace_without_family/60_0family_mode.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **rougail.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace_without_family/60_0family_mode.changelog.adoc b/tests/results/test_namespace_without_family/60_0family_mode.changelog.adoc index 6332656a1..c7d2015c9 100644 --- a/tests/results/test_namespace_without_family/60_0family_mode.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_0family_mode.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **rougail.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_namespace_without_family/60_0family_mode.changelog.sh b/tests/results/test_namespace_without_family/60_0family_mode.changelog.sh index 13a906e65..faf922807 100644 --- a/tests/results/test_namespace_without_family/60_0family_mode.changelog.sh +++ b/tests/results/test_namespace_without_family/60_0family_mode.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.adoc b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.adoc index d1752b7c4..82968d18a 100644 --- a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.adoc b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.adoc index 5fb36a2ae..8ecbd3611 100644 --- a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__1__.var** + +| **rougail.dyn__1__.var** + **rougail.dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.sh b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.sh index 2c252288a..c4ba9d7b0 100644 --- a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.sh +++ b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.sh index 0f1708004..865d664de 100644 --- a/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.sh +++ b/tests/results/test_namespace_without_family/60_1family_dynamic_jinja.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc index 638d1f37a..97a397552 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.family.var** + +* val2 +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc index 08f001d42..951e8b4b5 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.family.var** + +* val2 +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh index 1b2457452..24bdef694 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh index f34affb97..6a38a44b4 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc index a03476b06..7b237d8b1 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc index 04625b272..2b425644a 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh index 0c5642571..03691322c 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh index d0adc30be..40e865e80 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index 4e908a3b5..6c0a23641 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc index 48edea2c5..119fc732f 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.family.var** + +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh index e57a6f763..d6d4d54b7 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index a7489a89e..215ab9534 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index 7ef66dee3..6361a2cbb 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.family.var** + +* val2 +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc index 0281c5c1a..9c459b21e 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.family.var** + +* val2 +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh index 68624df21..d45096bd8 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 78bbd4ec4..71911f019 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ rougail.dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.adoc index d76633f8a..5eb4afd74 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.adoc index 344d84c30..007d6d0a1 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.sh index f2c6a1e6a..95c8ae3ed 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.sh index cac91ec92..e66439dcc 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.adoc index 2b8836cd9..f9b9ddd98 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc index b27e31ee9..3ea28c994 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**rougail.newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **rougail.newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh index ef4513367..9be824534 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.sh index 27970d081..0c834276a 100644 --- a/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_without_family/60_2family_dynamic_outside_calc_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.adoc index 794fa9cfe..fb98bde4f 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + -**Default**: val +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.adoc index 886dc6ffe..9b7d7f8d2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + -**Default**: val +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.sh index a0c634951..e2c77177b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.sh index e18934fe8..6347e94cd 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.adoc index b908dec2e..0b7646713 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + -**Default**: val +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.adoc index f85338d9b..fb2944b6b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**rougail.dyn__val1__.vardyn** + +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + -**Default**: val +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + +**Default**: val |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.sh index 2052c935b..0e3a520c1 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.sh index b2d8a565b..75b75ac9a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc2_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc index 3d9fd5dce..87eff3392 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc index 27aefe196..366104f8a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh index f6630897c..590a9a45b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh index e9f04b30d..adeea8497 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.adoc index 94dc14117..3d8d32a0b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc index a366804f2..b193d7f7e 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.sh index ec62bad51..1a6cef2af 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.sh index 1acf4b04c..59535758e 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.adoc index 861ffcc7e..829ff3b8a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc index f9950477f..ddf2b3716 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh index 1b41ea2be..657e348fd 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.sh index a2ce08246..de7c28b5b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix2_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.adoc index 7854af6a9..6bae48c82 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.adoc @@ -1,12 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc index 36ffc785f..09f58188d 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc @@ -3,12 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh index e64157fad..b40ae4b73 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.adoc index a1a729940..4183491ce 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.adoc index 7d20edf6c..404355304 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.adoc @@ -2,20 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. +* val2 +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.sh index 4072404da..e00b9b8d4 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.sh index 56fd6a414..adfd32141 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_disabled2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc index f55d59fbd..836958eaf 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc index c2379174e..997261c4c 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh index 18e15ac2c..ac1096974 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh index 5a95c9616..94c84c226 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc index 6da5d86e9..60d02d7ac 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.adoc @@ -1,22 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + -**Example**: val1 -| - -**rougail.dyn__val1__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + +**Example**: val1 +| **rougail.dyn__val1__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc index eae7e29b3..af14a1089 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.adoc @@ -2,23 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + -**Example**: val1 -| - -**rougail.dyn__val1__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + +**Example**: val1 +| **rougail.dyn__val1__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh index 4b04d71ff..41aec20d2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc index fa4176049..2e8a2844b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc index 32d1d140a..2cc87bbb1 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh index dd29f377b..4cb938afa 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -13,8 +10,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh index f4ac9b0d6..9ed44fea7 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_empty_3.sh @@ -8,8 +8,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.adoc index 437a2de8c..64fc11610 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: a value (from an undocumented variable) |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.adoc index 7e3aa1ac1..2bd3b81e8 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + **Default**: a value (from an undocumented variable) |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.sh index ff09a4602..3730e13de 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: a value (from an โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.sh index b32cf9357..6692038f2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: a value (from an โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.adoc index f7de20972..46c765bb4 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable calculated. + **Default**: true (from an undocumented variable) |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.adoc index 2545e4c69..08c19b26a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable calculated. + **Default**: true (from an undocumented variable) |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.sh index e3030255f..159d65956 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true (from an undocumented โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.sh index 9bdd66b19..5b2a3d0bc 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true (from an undocumented โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.adoc index e9c14c92d..c96d584ca 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable calculated. + **Default**: (from an undocumented variable) * a value diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.adoc index 757105028..dd992709a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable calculated. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable calculated. + **Default**: (from an undocumented variable) * a value diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.sh index 90881f84a..b089955c6 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.changelog.sh @@ -1,20 +1,17 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: (from an undocumented โ”‚ โ”‚ unique   multiple  โ”‚ variable) โ”‚ -โ”‚ โ”‚ - a value โ”‚ -โ”‚ โ”‚ - a second value โ”‚ +โ”‚ โ”‚ โ€ข a value โ”‚ +โ”‚ โ”‚ โ€ข a second value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.sh index 4a23c9b07..c2cea242d 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -3,12 +3,12 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: (from an undocumented โ”‚ โ”‚ unique   multiple  โ”‚ variable) โ”‚ -โ”‚ โ”‚ - a value โ”‚ -โ”‚ โ”‚ - a second value โ”‚ +โ”‚ โ”‚ โ€ข a value โ”‚ +โ”‚ โ”‚ โ€ข a second value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.adoc index 5d0bed461..6d44c1b3e 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc index e5fdeeb90..fbf4c90fc 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh index aae80bf53..0a76aceb2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.sh index 377083981..cbf4b2ad8 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc index cb3983beb..bfb84cc40 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc index 9f71c9244..c3aa82fbf 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh index 6cb4cf967..71fc669b1 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.sh index 1a8171259..08bf83fdb 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_suffix_param_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc index 3d9fd5dce..87eff3392 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc index 27aefe196..366104f8a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh index f6630897c..590a9a45b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh index e9f04b30d..adeea8497 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc index 0bab5c313..8190a6f08 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.dyn__val1__.var2** + **rougail.dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "rougail.dyn__val1__.var1" has the value "val1" -* when the variable "rougail.dyn__val2__.var1" has the value "val1" +* when the variable "rougail.dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc index 8f78b2da4..17b4072c9 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc @@ -2,22 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.dyn__val1__.var2** + **rougail.dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "rougail.dyn__val1__.var1" has the value "val1" -* when the variable "rougail.dyn__val2__.var1" has the value "val1" +* when the variable "rougail.dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh index b90b2dfaa..bee6ceaae 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,10 +9,10 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ rougail.dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable โ”‚ โ”‚ disabled  โ”‚ "rougail.dynval1.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ -โ”‚ โ”‚ - when the variable โ”‚ +โ”‚ โ”‚ โ€ข when the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh index 0c87afb92..4ebcdcce5 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled.sh @@ -7,10 +7,10 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ rougail.dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable โ”‚ โ”‚ disabled  โ”‚ "rougail.dynval1.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ -โ”‚ โ”‚ - when the variable โ”‚ +โ”‚ โ”‚ โ€ข when the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.var1" has the value โ”‚ โ”‚ โ”‚ "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc index b8d6fe775..f97dddc89 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + -**Disabled**: when the variable "rougail.dyn__val1__.var1" has the value "val1" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + +**Disabled**: when the variable "rougail.dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc index c71d32fac..9d6905aa5 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var1** + +| Variable | Description +| **rougail.dyn__val1__.var1** + **rougail.dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + -**Disabled**: when the variable "rougail.dyn__val1__.var1" has the value "val1" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + +**Disabled**: when the variable "rougail.dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh index b470a8a38..df3fe895d 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc index f55d59fbd..836958eaf 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc index c2379174e..997261c4c 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "rougail.dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "rougail.dynval1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh index 18e15ac2c..ac1096974 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh index 5a95c9616..94c84c226 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_calc_variable_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.adoc index f28715673..59eb8282b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. -| - -**rougail.dyn__val1__.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc index d071d2acd..9dd9c0452 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.dyn__val1__.var** + +| Variable | Description +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. -| - -**rougail.dyn__val1__.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +| **rougail.dyn__val1__.family.var** + **rougail.dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.sh index aef351797..917495bbd 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_hidden_suffix.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc index 7b2f90027..7c55f4793 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.adoc @@ -1,60 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 * val3 * val4 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + **rougail.__val3___dyn.var1** + **rougail.__val4___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + **rougail.__val3___dyn.var2** + **rougail.__val4___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 2. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + **rougail.__val3___dyn.var3** + **rougail.__val4___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 3. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + **rougail.__val3___dyn.var4** + **rougail.__val4___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A variable 4. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. + **Default**: the value of the variable "rougail.val4_dyn.var1" + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc index 8f537bbe6..68f232c77 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.adoc @@ -3,60 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 * val3 * val4 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + **rougail.__val3___dyn.var1** + **rougail.__val4___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 1. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + **rougail.__val3___dyn.var2** + **rougail.__val4___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 2. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 2. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + **rougail.__val3___dyn.var3** + **rougail.__val4___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable 3. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable 3. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" + the value of the variable "rougail.__val3___dyn.var1" + the value of the variable "rougail.__val4___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + **rougail.__val3___dyn.var4** + **rougail.__val4___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A variable 4. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A variable 4. + **Default**: the value of the variable "rougail.val4_dyn.var1" + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh index ca2ca37b9..4b3d05e4f 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.changelog.sh @@ -1,17 +1,14 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ -โ”‚ โ”‚ - val4 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ A variable 1. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh index 2261784d8..9409ac3a6 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_unknown_suffix_empty.sh @@ -3,10 +3,10 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ -โ”‚ โ”‚ - val4 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ A variable 1. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc index bed3066c9..6f9ee9ef2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc index a6773c485..d27fd3812 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh index a0bfe7f68..4b510b394 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -17,9 +14,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh index f8f4a5d0c..db2cd6b11 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -12,8 +12,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc index 7b28915cb..2134603ea 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.adoc @@ -1,30 +1,21 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc index c8fa536cd..a11b54075 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.adoc @@ -3,30 +3,21 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh index 9b5b56b67..2a66e56e9 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.changelog.sh @@ -1,22 +1,19 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh index 76a23bc8c..3eb0c6dff 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2.sh @@ -3,15 +3,15 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc index 41ae69e2e..c8b773c80 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.adoc @@ -1,30 +1,21 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc index 775a82f62..028708f0a 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.adoc @@ -3,30 +3,21 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" * the value of the variable "rougail.my_dyn_family___val2__.var" -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh index 9703e3e96..5368cb9f5 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.changelog.sh @@ -1,22 +1,19 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh index e6704e66e..b2f3a59c2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside2_empty.sh @@ -3,15 +3,15 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc index bed3066c9..6f9ee9ef2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc index a6773c485..d27fd3812 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh index a0bfe7f68..4b510b394 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -17,9 +14,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh index f8f4a5d0c..db2cd6b11 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_1_0.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -12,8 +12,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc index 4baa0610d..c3ff3e6d9 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc index 2e589666b..409d3bacb 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.var" diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh index ee038de34..ffa98e310 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -17,9 +14,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh index 181b35d96..d584eef92 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ @@ -12,8 +12,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.adoc index 7a40f5c43..905bad053 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.adoc index 958cd04a5..ef35bfe79 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.sh index 29d4e26b1..307803458 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.sh index 1a1a43641..ac19f6e62 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.adoc index 454c2dcbc..629174e0f 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.adoc index 04d06d188..c1aee899b 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.var** + +| **rougail.my_dyn_family___val1__.var** + **rougail.my_dyn_family___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable inside a dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable inside a dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.sh index 23bddb0f6..c9b4a8cd7 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.sh index 1c469cb0e..defe6a5b2 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.var โ”‚ A variable inside a dynamic family. โ”‚ โ”‚ rougail.my_dyn_family_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc index 91eb7612a..53171d744 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.adoc @@ -1,29 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.subdyn___val1__.var** + +| **rougail.my_dyn_family___val1__.subdyn___val1__.var** + **rougail.my_dyn_family___val1__.subdyn___val2__.var** + **rougail.my_dyn_family___val2__.subdyn___val1__.var** + **rougail.my_dyn_family___val2__.subdyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside a sub dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.subdyn___val1__.var" if diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc index 01f240251..0d3950cb6 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.adoc @@ -3,29 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.my_dyn_family___val1__.subdyn___val1__.var** + +| **rougail.my_dyn_family___val1__.subdyn___val1__.var** + **rougail.my_dyn_family___val1__.subdyn___val2__.var** + **rougail.my_dyn_family___val2__.subdyn___val1__.var** + **rougail.my_dyn_family___val2__.subdyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside a sub dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside a sub dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A variable. + **Default**: * the value of the variable "rougail.my_dyn_family___val1__.subdyn___val1__.var" if diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh index 839b09584..ad0dac29c 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.subdyn_vaโ€ฆ โ”‚ A variable inside a sub dynamic โ”‚ โ”‚ rougail.my_dyn_family_val1.subdyn_vaโ€ฆ โ”‚ family. โ”‚ @@ -19,10 +16,10 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh index 1826a36c1..35d58769e 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.my_dyn_family_val1.subdyn_vaโ€ฆ โ”‚ A variable inside a sub dynamic โ”‚ โ”‚ rougail.my_dyn_family_val1.subdyn_vaโ€ฆ โ”‚ family. โ”‚ @@ -14,10 +14,10 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.my_dyn_family_val1.subdyn_โ€ฆ โ”‚ โ”‚ โ”‚ if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc index 7805b934b..687cfe6e9 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc index e2f090f7e..58efb16df 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh index c8efaeee9..27b082caa 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh index dd469661b..9a2a84660 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc index 6b82eb2f4..d75c2cdbc 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc index e34b163b6..75f682888 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn___val1__.var** + +| **rougail.dyn___val1__.var** + **rougail.dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "rougail.dyn_val1.var" if it is defined |==== diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh index 41514924d..1f614588e 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh index 8c3dd726c..0b7caf9d5 100644 --- a/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ rougail.dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc index 1c09d3374..7ad6a164b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.adoc @@ -1,46 +1,29 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc index 600c658e6..49c20a4cc 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.adoc @@ -3,46 +3,29 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh index 3be8dda8a..db52a921e 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ Value is suffix. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh index c8a8451fe..5f612e754 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ Value is suffix. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc index 68818c631..0fd801c0b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.adoc @@ -1,46 +1,29 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc index cef513fe5..08eab23d8 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.adoc @@ -3,46 +3,29 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.__val1___dyn.var1** + +| **rougail.__val1___dyn.var1** + **rougail.__val2___dyn.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is suffix. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is suffix. + **Default**: the value of the identifier -| - -**rougail.__val1___dyn.var2** + +| **rougail.__val1___dyn.var2** + **rougail.__val2___dyn.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var3** + +| **rougail.__val1___dyn.var3** + **rougail.__val2___dyn.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is relative first variable. + -**Default**: -the value of the variable "rougail.__val1___dyn.var1" + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is relative first variable. + +**Default**: the value of the variable "rougail.__val1___dyn.var1" + the value of the variable "rougail.__val2___dyn.var1" -| - -**rougail.__val1___dyn.var4** + +| **rougail.__val1___dyn.var4** + **rougail.__val2___dyn.var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Value is first variable of val1. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Value is first variable of val1. + **Default**: the value of the variable "rougail.val1_dyn.var1" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh index ac95fb377..a9f941c4a 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ Value is suffix. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh index ba9406fd3..e769ff3cd 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_inside_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1_dyn.var1 โ”‚ Value is suffix. โ”‚ โ”‚ rougail.val2_dyn.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.adoc index 2c6f50c1d..b2486f437 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.adoc index 1d1716840..331bb8ac9 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.sh index df82a67dc..83bc0786a 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ rougail.dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.sh index f9d040bac..e836154fb 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ rougail.dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.adoc index 59324888a..abe2e8be0 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.adoc index 791970cf2..d8e77ed55 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.leadership.leader** + +| **rougail.dyn__val1__.leadership.leader** + **rougail.dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**rougail.dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **rougail.dyn__val1__.leadership.follower1** + **rougail.dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.dyn__val1__.leadership.follower2** + **rougail.dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.sh index 1b04b725e..b21921aaa 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ rougail.dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.sh index 035618cf1..8d337d323 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_leadership_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ rougail.dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.adoc index 6d500ab61..3e3fc9983 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.adoc @@ -1,48 +1,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.adoc index 5bfe68450..0128431af 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.adoc @@ -3,48 +3,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.sh index 0fcb58d23..1eb61a5e4 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.sh index 31ed4afa8..1c219a27b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.adoc index 6d500ab61..3e3fc9983 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.adoc @@ -1,48 +1,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.adoc index 5bfe68450..0128431af 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.adoc @@ -3,48 +3,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.sh index 0fcb58d23..1eb61a5e4 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.sh index 31ed4afa8..1c219a27b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.adoc index c8ba817ee..37e962a6b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 -* val2 -| - -**rougail.__val1__.__val1__.var** + +* val2 +| **rougail.__val1__.__val1__.var** + **rougail.__val1__.__val2__.var** + **rougail.__val2__.__val1__.var** + **rougail.__val2__.__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.adoc index c3fbae698..ffbcf91e7 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.adoc @@ -2,23 +2,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 -* val2 -| - -**rougail.__val1__.__val1__.var** + +* val2 +| **rougail.__val1__.__val1__.var** + **rougail.__val1__.__val2__.var** + **rougail.__val2__.__val1__.var** + **rougail.__val2__.__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.sh index ff2f672fa..45f50297d 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1.val1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.val1.val2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.sh index 2902293ef..fc7e86e2e 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.val1.val1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.val1.val2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.adoc index c2cb9f43b..103a8f749 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.adoc @@ -1,48 +1,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.adoc index 16c802118..2cd22951a 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.adoc @@ -3,48 +3,33 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**rougail.dyn__val1__.var** + +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A dynamic variable. + **Default**: add 't' to each var value -| - -**rougail.dyn__val1__.dyn___tval1__.var** + +| **rougail.dyn__val1__.dyn___tval1__.var** + **rougail.dyn__val1__.dyn___tval2__.var** + **rougail.dyn__val2__.dyn___tval1__.var** + **rougail.dyn__val2__.dyn___tval2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifier** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifier** + **rougail.dyn__val1__.dyn___tval2__.var_identifier** + **rougail.dyn__val2__.dyn___tval1__.var_identifier** + **rougail.dyn__val2__.dyn___tval2__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + **Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___tval1__.var_identifiers** + +| **rougail.dyn__val1__.dyn___tval1__.var_identifiers** + **rougail.dyn__val1__.dyn___tval2__.var_identifiers** + **rougail.dyn__val2__.dyn___tval1__.var_identifiers** + **rougail.dyn__val2__.dyn___tval2__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + **Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.sh index 6f2b48b8d..d7c668329 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.sh index 980df9822..e4f620313 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ Default: add 't' to each var value โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.adoc index cbad3a856..c07c33cdb 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.adoc @@ -1,41 +1,26 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A dynamic variable. -| - -**rougail.dyn__val1__.dyn___example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A dynamic variable. +| **rougail.dyn__val1__.dyn___example__.var** + **rougail.dyn__val2__.dyn___example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + -**Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifier** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + +**Default**: the value of the identifier +| **rougail.dyn__val1__.dyn___example__.var_identifier** + **rougail.dyn__val2__.dyn___example__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + -**Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifiers** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + +**Default**: the value of the identifier +| **rougail.dyn__val1__.dyn___example__.var_identifiers** + **rougail.dyn__val2__.dyn___example__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + -**Default**: join identifier 1 et identifier 2 +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + +**Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.adoc index dd4a95086..936376505 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.adoc @@ -2,42 +2,27 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.var** + **rougail.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A dynamic variable. -| - -**rougail.dyn__val1__.dyn___example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A dynamic variable. +| **rougail.dyn__val1__.dyn___example__.var** + **rougail.dyn__val2__.dyn___example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable dynamic. + -**Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifier** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable dynamic. + +**Default**: the value of the identifier +| **rougail.dyn__val1__.dyn___example__.var_identifier** + **rougail.dyn__val2__.dyn___example__.var_identifier** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Identifier from first family. + -**Default**: the value of the identifier -| - -**rougail.dyn__val1__.dyn___example__.var_identifiers** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Identifier from first family. + +**Default**: the value of the identifier +| **rougail.dyn__val1__.dyn___example__.var_identifiers** + **rougail.dyn__val2__.dyn___example__.var_identifiers** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Merge identifiers. + -**Default**: join identifier 1 et identifier 2 +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Merge identifiers. + +**Default**: join identifier 1 et identifier 2 |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.sh index 4d349d25d..806c0aaca 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.sh index 553529a40..a75bfc027 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_sub_dynamic_empty2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc index c183d618a..b7fb5fb3b 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.adoc @@ -1,31 +1,22 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" -* the value of the variable "rougail.dyn__val2__.dyn__val1__.var" +* the value of the variable "rougail.dyn__val2__.dyn__val1__.var" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc index b9f4b7202..4785d46d3 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.adoc @@ -2,32 +2,23 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" -* the value of the variable "rougail.dyn__val2__.dyn__val1__.var" +* the value of the variable "rougail.dyn__val2__.dyn__val1__.var" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh index f360c4ba2..fa563e05d 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval1.dynval2.var โ”‚ โ”‚ @@ -19,9 +16,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.dynval1.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh index 75f83c64f..8a305e334 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval1.dynval2.var โ”‚ โ”‚ @@ -14,8 +14,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval2.dynval1.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc index 192752746..2df4cc43e 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.adoc @@ -1,31 +1,22 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" -* the value of the variable "rougail.dyn__val1__.dyn__val2__.var" +* the value of the variable "rougail.dyn__val1__.dyn__val2__.var" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc index a4ef1bb98..9d775ad1e 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.adoc @@ -2,32 +2,23 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **rougail.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**rougail.dyn__val1__.dyn__val1__.var** + +* val2 +| **rougail.dyn__val1__.dyn__val1__.var** + **rougail.dyn__val1__.dyn__val2__.var** + **rougail.dyn__val2__.dyn__val1__.var** + **rougail.dyn__val2__.dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**rougail.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable calculated. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **rougail.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable calculated. + **Default**: * the value of the variable "rougail.dyn__val1__.dyn__val1__.var" -* the value of the variable "rougail.dyn__val1__.dyn__val2__.var" +* the value of the variable "rougail.dyn__val1__.dyn__val2__.var" |==== diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh index 33032b6c2..2f48867bc 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval1.dynval2.var โ”‚ โ”‚ @@ -19,9 +16,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh index 51f90bf23..b26bff889 100644 --- a/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_without_family/60_6family_dynamic_suffix_auto_multi2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.dynval1.dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ rougail.dynval1.dynval2.var โ”‚ โ”‚ @@ -14,8 +14,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ rougail.var2 โ”‚ A variable calculated. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval1.var" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "rougail.dynval1.dynval2.var" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic.adoc b/tests/results/test_namespace_without_family/60_9extra_dynamic.adoc index 54d41a3df..77e08b9d2 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic.adoc +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.adoc b/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.adoc index c9ba8eb2f..daf102a5b 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.adoc @@ -3,18 +3,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.sh b/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.sh index 8c145a4c5..b19231e29 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.sh +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.dyn_a.var โ”‚ โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic.sh b/tests/results/test_namespace_without_family/60_9extra_dynamic.sh index 0ca963a9b..045d3776f 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.dyn_a.var โ”‚ โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.adoc b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.adoc index 2783af2e0..15015fb1a 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.adoc +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.varname** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -No change. + +| **rougail.general.varname** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | No change. + **Default**: * a -| - -**extra.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **extra.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.adoc b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.adoc index dc4f95950..3f6dacf55 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.adoc @@ -3,26 +3,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.general.varname** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -No change. + +| **rougail.general.varname** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | No change. + **Default**: * a -| - -**extra.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **extra.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * a -| - -**extra.dyn___a__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **extra.dyn___a__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.sh b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.sh index 78991f430..05ae5da6a 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.sh +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.changelog.sh @@ -1,18 +1,15 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.varname โ”‚ No change. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.dyn_a.var โ”‚ โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.sh index 706a2ff41..3d2ad98fe 100644 --- a/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_without_family/60_9extra_dynamic_extra.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ rougail.general.varname โ”‚ No change. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.var โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ extra.dyn_a.var โ”‚ โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.adoc b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.adoc index 12d948925..1259e8c8f 100644 --- a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + -**Default**: val2 -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + +**Default**: val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.adoc b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.adoc index 5471f6bb5..ccc963860 100644 --- a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.adoc +++ b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**rougail.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + -**Default**: val2 -| - -**rougail.dyn__val1__.vardyn** + +| Variable | Description +| **rougail.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + +**Default**: val2 +| **rougail.dyn__val1__.vardyn** + **rougail.dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.sh b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.sh index 50691e700..3ecf79feb 100644 --- a/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.sh +++ b/tests/results/test_namespace_without_family/60_9family_dynamic_calc_both.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_namespace_without_family/68_0family_leadership_mode.adoc b/tests/results/test_namespace_without_family/68_0family_leadership_mode.adoc index 068ae6593..eccc54414 100644 --- a/tests/results/test_namespace_without_family/68_0family_leadership_mode.adoc +++ b/tests/results/test_namespace_without_family/68_0family_leadership_mode.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.adoc b/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.adoc index 2e56e3dd9..3c6895ef8 100644 --- a/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.adoc +++ b/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.adoc @@ -3,20 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**rougail.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**rougail.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**rougail.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **rougail.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **rougail.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **rougail.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.sh b/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.sh index 937f6640d..a76ec7986 100644 --- a/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.sh +++ b/tests/results/test_namespace_without_family/68_0family_leadership_mode.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_0version_underscore.adoc b/tests/results/test_without_family/00_0version_underscore.adoc index 87e2649f4..c6e04cc34 100644 --- a/tests/results/test_without_family/00_0version_underscore.adoc +++ b/tests/results/test_without_family/00_0version_underscore.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/00_0version_underscore.changelog.adoc b/tests/results/test_without_family/00_0version_underscore.changelog.adoc index 237c723ff..53f4d9a9b 100644 --- a/tests/results/test_without_family/00_0version_underscore.changelog.adoc +++ b/tests/results/test_without_family/00_0version_underscore.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**version** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **version** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/00_0version_underscore.changelog.sh b/tests/results/test_without_family/00_0version_underscore.changelog.sh index b31dfaa8d..0ad4613c7 100644 --- a/tests/results/test_without_family/00_0version_underscore.changelog.sh +++ b/tests/results/test_without_family/00_0version_underscore.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_1empty_variable.adoc b/tests/results/test_without_family/00_1empty_variable.adoc index d2760e58f..eaa320976 100644 --- a/tests/results/test_without_family/00_1empty_variable.adoc +++ b/tests/results/test_without_family/00_1empty_variable.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/00_1empty_variable.changelog.adoc b/tests/results/test_without_family/00_1empty_variable.changelog.adoc index 63754f38a..e8e210df0 100644 --- a/tests/results/test_without_family/00_1empty_variable.changelog.adoc +++ b/tests/results/test_without_family/00_1empty_variable.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**empty** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **empty** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/00_1empty_variable.changelog.sh b/tests/results/test_without_family/00_1empty_variable.changelog.sh index b3c50845e..70f290124 100644 --- a/tests/results/test_without_family/00_1empty_variable.changelog.sh +++ b/tests/results/test_without_family/00_1empty_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated.adoc b/tests/results/test_without_family/00_2default_calculated.adoc index 483cdcd18..34b233614 100644 --- a/tests/results/test_without_family/00_2default_calculated.adoc +++ b/tests/results/test_without_family/00_2default_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test_without_family/00_2default_calculated.changelog.adoc b/tests/results/test_without_family/00_2default_calculated.changelog.adoc index 54610e573..1bf896769 100644 --- a/tests/results/test_without_family/00_2default_calculated.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of var1 |==== diff --git a/tests/results/test_without_family/00_2default_calculated.changelog.sh b/tests/results/test_without_family/00_2default_calculated.changelog.sh index f047d892d..36a58f0eb 100644 --- a/tests/results/test_without_family/00_2default_calculated.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated_multi.adoc b/tests/results/test_without_family/00_2default_calculated_multi.adoc index b39e44836..ac7d04384 100644 --- a/tests/results/test_without_family/00_2default_calculated_multi.adoc +++ b/tests/results/test_without_family/00_2default_calculated_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc index 84496768a..9439ae18c 100644 --- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * no * yes * maybe -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of _.var1 |==== diff --git a/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh b/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh index 16fc72aa7..730512250 100644 --- a/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_multi.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ diff --git a/tests/results/test_without_family/00_2default_calculated_multi.sh b/tests/results/test_without_family/00_2default_calculated_multi.sh index 7f12a05ff..30eba9482 100644 --- a/tests/results/test_without_family/00_2default_calculated_multi.sh +++ b/tests/results/test_without_family/00_2default_calculated_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ -โ”‚ โ”‚ - maybe โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ +โ”‚ โ”‚ โ€ข maybe โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of _.var1 โ”‚ diff --git a/tests/results/test_without_family/00_2default_calculated_params_permissive.adoc b/tests/results/test_without_family/00_2default_calculated_params_permissive.adoc index 10e508d74..98e6a9e0f 100644 --- a/tests/results/test_without_family/00_2default_calculated_params_permissive.adoc +++ b/tests/results/test_without_family/00_2default_calculated_params_permissive.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.adoc index 7eec9f104..3cd4570cd 100644 --- a/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.sh b/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.sh index 2445843d6..7591492ee 100644 --- a/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_params_permissive.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated_variable.adoc b/tests/results/test_without_family/00_2default_calculated_variable.adoc index 47515c4c7..2938f600b 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc index 4402f052b..22d6c3188 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh index 8c07e1b7b..f297ed61b 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description.adoc b/tests/results/test_without_family/00_2default_calculated_variable_description.adoc index 58472c864..5a16e4f24 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_description.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.adoc index ea44f9f54..962335b2a 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: value of a variable! +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: value of a variable! |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.sh index 99e6659df..ae759a8fe 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_variable_description.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.adoc b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.adoc index 08abd9cf2..ffec7edac 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc index fdd956064..0dc5899c2 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.adoc @@ -2,25 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: value of a -variable! -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A new variable. +variable! +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable. |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh index fe32ed94f..d164d97ee 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_variable_description_multi_line.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc b/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc index a49c58023..d70667412 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc index cbbd5564c..7f518cf09 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc +++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Validator**: the domain name can be an IP -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: the domain name can be an IP + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh index 3d575404e..0ddeea40e 100644 --- a/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh +++ b/tests/results/test_without_family/00_2default_calculated_variable_transitive.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_4load_subfolder.adoc b/tests/results/test_without_family/00_4load_subfolder.adoc index a9b343947..bc66be687 100644 --- a/tests/results/test_without_family/00_4load_subfolder.adoc +++ b/tests/results/test_without_family/00_4load_subfolder.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/00_4load_subfolder.changelog.adoc b/tests/results/test_without_family/00_4load_subfolder.changelog.adoc index fedaceeea..f0177e3a2 100644 --- a/tests/results/test_without_family/00_4load_subfolder.changelog.adoc +++ b/tests/results/test_without_family/00_4load_subfolder.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/00_4load_subfolder.changelog.sh b/tests/results/test_without_family/00_4load_subfolder.changelog.sh index 33c00202e..bc5b4dd9b 100644 --- a/tests/results/test_without_family/00_4load_subfolder.changelog.sh +++ b/tests/results/test_without_family/00_4load_subfolder.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_5load_notype.adoc b/tests/results/test_without_family/00_5load_notype.adoc index c77e5be63..5c6bacb0f 100644 --- a/tests/results/test_without_family/00_5load_notype.adoc +++ b/tests/results/test_without_family/00_5load_notype.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_without_family/00_5load_notype.changelog.adoc b/tests/results/test_without_family/00_5load_notype.changelog.adoc index f60af4255..32c459192 100644 --- a/tests/results/test_without_family/00_5load_notype.changelog.adoc +++ b/tests/results/test_without_family/00_5load_notype.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**without_type** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **without_type** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_without_family/00_5load_notype.changelog.sh b/tests/results/test_without_family/00_5load_notype.changelog.sh index bdf380bbe..68344242e 100644 --- a/tests/results/test_without_family/00_5load_notype.changelog.sh +++ b/tests/results/test_without_family/00_5load_notype.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6boolean.adoc b/tests/results/test_without_family/00_6boolean.adoc index 501de0b56..0bbab3b91 100644 --- a/tests/results/test_without_family/00_6boolean.adoc +++ b/tests/results/test_without_family/00_6boolean.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test_without_family/00_6boolean.changelog.adoc b/tests/results/test_without_family/00_6boolean.changelog.adoc index b1f3c085c..dd71ff86b 100644 --- a/tests/results/test_without_family/00_6boolean.changelog.adoc +++ b/tests/results/test_without_family/00_6boolean.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. + **Default**: true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. + **Default**: true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. + **Default**: true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. + **Default**: false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. + **Default**: false |==== diff --git a/tests/results/test_without_family/00_6boolean.changelog.sh b/tests/results/test_without_family/00_6boolean.changelog.sh index 48d224850..24f20cd35 100644 --- a/tests/results/test_without_family/00_6boolean.changelog.sh +++ b/tests/results/test_without_family/00_6boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6boolean_no_mandatory.adoc b/tests/results/test_without_family/00_6boolean_no_mandatory.adoc index c3091dc74..0608c8a9f 100644 --- a/tests/results/test_without_family/00_6boolean_no_mandatory.adoc +++ b/tests/results/test_without_family/00_6boolean_no_mandatory.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.adoc b/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.adoc index 230731c01..93ea11e04 100644 --- a/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.adoc +++ b/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. + **Default**: true |==== diff --git a/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.sh b/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.sh index 0e51928a8..8ca8818b7 100644 --- a/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.sh +++ b/tests/results/test_without_family/00_6boolean_no_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6choice.adoc b/tests/results/test_without_family/00_6choice.adoc index 2de2594d5..08757104d 100644 --- a/tests/results/test_without_family/00_6choice.adoc +++ b/tests/results/test_without_family/00_6choice.adoc @@ -1,62 +1,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test_without_family/00_6choice.changelog.adoc b/tests/results/test_without_family/00_6choice.changelog.adoc index fb3f2ae26..b2db71150 100644 --- a/tests/results/test_without_family/00_6choice.changelog.adoc +++ b/tests/results/test_without_family/00_6choice.changelog.adoc @@ -3,62 +3,44 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. + **Choices**: * a * b * c -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. + **Choices**: * a * b * c * null -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. + **Choices**: * null * b * c -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. + **Choices**: * a **โ† (default)** * b * c -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. + **Choices**: * 1 **โ† (default)** diff --git a/tests/results/test_without_family/00_6choice.changelog.sh b/tests/results/test_without_family/00_6choice.changelog.sh index d280b2fe0..52f4a445e 100644 --- a/tests/results/test_without_family/00_6choice.changelog.sh +++ b/tests/results/test_without_family/00_6choice.changelog.sh @@ -1,46 +1,43 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6choice.sh b/tests/results/test_without_family/00_6choice.sh index ac81b8c92..d1ed0be1c 100644 --- a/tests/results/test_without_family/00_6choice.sh +++ b/tests/results/test_without_family/00_6choice.sh @@ -3,38 +3,38 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  choice   standard  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ† (default) โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - 1 โ† (default) โ”‚ -โ”‚ โ”‚ - 2 โ”‚ -โ”‚ โ”‚ - 3 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ +โ”‚ โ”‚ โ€ข 3 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6choice_calculation.adoc b/tests/results/test_without_family/00_6choice_calculation.adoc index 2cd6105e2..4756f850f 100644 --- a/tests/results/test_without_family/00_6choice_calculation.adoc +++ b/tests/results/test_without_family/00_6choice_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_6choice_calculation.changelog.adoc b/tests/results/test_without_family/00_6choice_calculation.changelog.adoc index 9a9cc8bf0..5b9c690c9 100644 --- a/tests/results/test_without_family/00_6choice_calculation.changelog.adoc +++ b/tests/results/test_without_family/00_6choice_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choices is 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_6choice_calculation.changelog.sh b/tests/results/test_without_family/00_6choice_calculation.changelog.sh index f27e36f45..40b9b500d 100644 --- a/tests/results/test_without_family/00_6choice_calculation.changelog.sh +++ b/tests/results/test_without_family/00_6choice_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6choice_link.adoc b/tests/results/test_without_family/00_6choice_link.adoc index 8a3a5a441..0e0a536b5 100644 --- a/tests/results/test_without_family/00_6choice_link.adoc +++ b/tests/results/test_without_family/00_6choice_link.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test_without_family/00_6choice_link.changelog.adoc b/tests/results/test_without_family/00_6choice_link.changelog.adoc index 295880972..b0f3c49ff 100644 --- a/tests/results/test_without_family/00_6choice_link.changelog.adoc +++ b/tests/results/test_without_family/00_6choice_link.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. + **Choices**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. + **Choices**: * a diff --git a/tests/results/test_without_family/00_6choice_link.changelog.sh b/tests/results/test_without_family/00_6choice_link.changelog.sh index 040903d41..1ac0a9d5b 100644 --- a/tests/results/test_without_family/00_6choice_link.changelog.sh +++ b/tests/results/test_without_family/00_6choice_link.changelog.sh @@ -1,22 +1,19 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6choice_link.sh b/tests/results/test_without_family/00_6choice_link.sh index 3b5802312..14c584acc 100644 --- a/tests/results/test_without_family/00_6choice_link.sh +++ b/tests/results/test_without_family/00_6choice_link.sh @@ -3,15 +3,15 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6choice_variable.adoc b/tests/results/test_without_family/00_6choice_variable.adoc index 4ee853f49..7aa1bd102 100644 --- a/tests/results/test_without_family/00_6choice_variable.adoc +++ b/tests/results/test_without_family/00_6choice_variable.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a |==== diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.adoc b/tests/results/test_without_family/00_6choice_variable.changelog.adoc index 9104191b2..13d04bc91 100644 --- a/tests/results/test_without_family/00_6choice_variable.changelog.adoc +++ b/tests/results/test_without_family/00_6choice_variable.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a |==== diff --git a/tests/results/test_without_family/00_6choice_variable.changelog.sh b/tests/results/test_without_family/00_6choice_variable.changelog.sh index 963a37d36..19a2995fb 100644 --- a/tests/results/test_without_family/00_6choice_variable.changelog.sh +++ b/tests/results/test_without_family/00_6choice_variable.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6choice_variable.sh b/tests/results/test_without_family/00_6choice_variable.sh index 52b3ba890..bc5a1d488 100644 --- a/tests/results/test_without_family/00_6choice_variable.sh +++ b/tests/results/test_without_family/00_6choice_variable.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6choice_variable_link.adoc b/tests/results/test_without_family/00_6choice_variable_link.adoc index 463c10bcd..6082277f9 100644 --- a/tests/results/test_without_family/00_6choice_variable_link.adoc +++ b/tests/results/test_without_family/00_6choice_variable_link.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc b/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc index 1f7ca4880..6a7f29b10 100644 --- a/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc +++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test_without_family/00_6choice_variable_link.changelog.sh b/tests/results/test_without_family/00_6choice_variable_link.changelog.sh index 5daf094da..f61a2c261 100644 --- a/tests/results/test_without_family/00_6choice_variable_link.changelog.sh +++ b/tests/results/test_without_family/00_6choice_variable_link.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6choice_variable_link.sh b/tests/results/test_without_family/00_6choice_variable_link.sh index ee190fb56..07dcd298b 100644 --- a/tests/results/test_without_family/00_6choice_variable_link.sh +++ b/tests/results/test_without_family/00_6choice_variable_link.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6choice_variable_link2.adoc b/tests/results/test_without_family/00_6choice_variable_link2.adoc index 22b5c7722..aa75573f8 100644 --- a/tests/results/test_without_family/00_6choice_variable_link2.adoc +++ b/tests/results/test_without_family/00_6choice_variable_link2.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a -| - -**family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc b/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc index 9c62d6131..3b533c655 100644 --- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc +++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Default**: * a * b * c -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A first variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. + **Choices**: the value of the variable "var1" + **Default**: a -| - -**family.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A third variable. + +| **family.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. + **Choices**: the value of the variable "var1" + **Default**: the value of the variable "var2" |==== diff --git a/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh b/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh index 43a43d7a3..b1cfcf54d 100644 --- a/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh +++ b/tests/results/test_without_family/00_6choice_variable_link2.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6choice_variable_link2.sh b/tests/results/test_without_family/00_6choice_variable_link2.sh index 1adc78530..f59df6063 100644 --- a/tests/results/test_without_family/00_6choice_variable_link2.sh +++ b/tests/results/test_without_family/00_6choice_variable_link2.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A first variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/00_6custom.adoc b/tests/results/test_without_family/00_6custom.adoc index 999be5e41..9c2d734fd 100644 --- a/tests/results/test_without_family/00_6custom.adoc +++ b/tests/results/test_without_family/00_6custom.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test_without_family/00_6custom.changelog.adoc b/tests/results/test_without_family/00_6custom.changelog.adoc index 3dc769e02..808c4ae20 100644 --- a/tests/results/test_without_family/00_6custom.changelog.adoc +++ b/tests/results/test_without_family/00_6custom.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | -The first variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | -The seconf variable. + -**Default**: value +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. + +**Default**: value |==== diff --git a/tests/results/test_without_family/00_6custom.changelog.sh b/tests/results/test_without_family/00_6custom.changelog.sh index 70b4224c8..c434622b7 100644 --- a/tests/results/test_without_family/00_6custom.changelog.sh +++ b/tests/results/test_without_family/00_6custom.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6domainname.adoc b/tests/results/test_without_family/00_6domainname.adoc index ff8f80a5f..accb1877d 100644 --- a/tests/results/test_without_family/00_6domainname.adoc +++ b/tests/results/test_without_family/00_6domainname.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test_without_family/00_6domainname.changelog.adoc b/tests/results/test_without_family/00_6domainname.changelog.adoc index 8dd1a4f81..fc55945bb 100644 --- a/tests/results/test_without_family/00_6domainname.changelog.adoc +++ b/tests/results/test_without_family/00_6domainname.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Default**: my.domain.name |==== diff --git a/tests/results/test_without_family/00_6domainname.changelog.sh b/tests/results/test_without_family/00_6domainname.changelog.sh index 53bd105a2..ccf185121 100644 --- a/tests/results/test_without_family/00_6domainname.changelog.sh +++ b/tests/results/test_without_family/00_6domainname.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6domainname_params.adoc b/tests/results/test_without_family/00_6domainname_params.adoc index ed4d689c4..6bd078bbd 100644 --- a/tests/results/test_without_family/00_6domainname_params.adoc +++ b/tests/results/test_without_family/00_6domainname_params.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Validator**: the domain name can be an IP + **Default**: my.domain.name |==== diff --git a/tests/results/test_without_family/00_6domainname_params.changelog.adoc b/tests/results/test_without_family/00_6domainname_params.changelog.adoc index b905b15ef..31efec57a 100644 --- a/tests/results/test_without_family/00_6domainname_params.changelog.adoc +++ b/tests/results/test_without_family/00_6domainname_params.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | -A domain name variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. + **Validator**: the domain name can be an IP + **Default**: my.domain.name |==== diff --git a/tests/results/test_without_family/00_6domainname_params.changelog.sh b/tests/results/test_without_family/00_6domainname_params.changelog.sh index 41704ff11..f70a4c3b7 100644 --- a/tests/results/test_without_family/00_6domainname_params.changelog.sh +++ b/tests/results/test_without_family/00_6domainname_params.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6float.adoc b/tests/results/test_without_family/00_6float.adoc index d917e9fa1..8d83ee40d 100644 --- a/tests/results/test_without_family/00_6float.adoc +++ b/tests/results/test_without_family/00_6float.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test_without_family/00_6float.changelog.adoc b/tests/results/test_without_family/00_6float.changelog.adoc index b87cd05bb..9ca602159 100644 --- a/tests/results/test_without_family/00_6float.changelog.adoc +++ b/tests/results/test_without_family/00_6float.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. + **Default**: 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. + **Default**: 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. + **Default**: 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. + **Default**: 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. + **Default**: 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. + **Default**: 10.1 |==== diff --git a/tests/results/test_without_family/00_6float.changelog.sh b/tests/results/test_without_family/00_6float.changelog.sh index 9ef617813..a5e605f24 100644 --- a/tests/results/test_without_family/00_6float.changelog.sh +++ b/tests/results/test_without_family/00_6float.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6integer.adoc b/tests/results/test_without_family/00_6integer.adoc index 5d3e9aed1..dc717b03b 100644 --- a/tests/results/test_without_family/00_6integer.adoc +++ b/tests/results/test_without_family/00_6integer.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_without_family/00_6integer.changelog.adoc b/tests/results/test_without_family/00_6integer.changelog.adoc index c1a6b9d62..6e243c123 100644 --- a/tests/results/test_without_family/00_6integer.changelog.adoc +++ b/tests/results/test_without_family/00_6integer.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_without_family/00_6integer.changelog.sh b/tests/results/test_without_family/00_6integer.changelog.sh index 748c3d764..29aead8d3 100644 --- a/tests/results/test_without_family/00_6integer.changelog.sh +++ b/tests/results/test_without_family/00_6integer.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6ip.adoc b/tests/results/test_without_family/00_6ip.adoc index 924b4c27b..2d81af0b8 100644 --- a/tests/results/test_without_family/00_6ip.adoc +++ b/tests/results/test_without_family/00_6ip.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -20,11 +14,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test_without_family/00_6ip.changelog.adoc b/tests/results/test_without_family/00_6ip.changelog.adoc index 984a27848..d671c47b6 100644 --- a/tests/results/test_without_family/00_6ip.changelog.adoc +++ b/tests/results/test_without_family/00_6ip.changelog.adoc @@ -3,18 +3,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. + **Validator**: reserved IP are allowed + **Default**: 1.1.1.1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | -An IP in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. + **Validators**: * IP must be in CIDR format @@ -22,11 +16,8 @@ An IP in CIDR format. + **Default**: 1.1.1.1/24 + **Example**: 192.168.0.128/25 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | -An IP in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.1/24 |==== diff --git a/tests/results/test_without_family/00_6ip.changelog.sh b/tests/results/test_without_family/00_6ip.changelog.sh index 39bacdbdb..fedd15ab8 100644 --- a/tests/results/test_without_family/00_6ip.changelog.sh +++ b/tests/results/test_without_family/00_6ip.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test_without_family/00_6ip.sh b/tests/results/test_without_family/00_6ip.sh index 16ccc9e4f..4cda9beda 100644 --- a/tests/results/test_without_family/00_6ip.sh +++ b/tests/results/test_without_family/00_6ip.sh @@ -7,8 +7,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ An IP in CIDR format. โ”‚ โ”‚  IP   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - IP must be in CIDR format โ”‚ -โ”‚ โ”‚ - reserved IP are allowed โ”‚ +โ”‚ โ”‚ โ€ข IP must be in CIDR format โ”‚ +โ”‚ โ”‚ โ€ข reserved IP are allowed โ”‚ โ”‚ โ”‚ Default: 1.1.1.1/24 โ”‚ โ”‚ โ”‚ Example: 192.168.0.128/25 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค diff --git a/tests/results/test_without_family/00_6network.adoc b/tests/results/test_without_family/00_6network.adoc index 4374ab318..aa5030f98 100644 --- a/tests/results/test_without_family/00_6network.adoc +++ b/tests/results/test_without_family/00_6network.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test_without_family/00_6network.changelog.adoc b/tests/results/test_without_family/00_6network.changelog.adoc index d923043b1..3e473e2a5 100644 --- a/tests/results/test_without_family/00_6network.changelog.adoc +++ b/tests/results/test_without_family/00_6network.changelog.adoc @@ -3,24 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. + **Default**: 1.1.1.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | -An network in CIDR format. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. + **Validator**: network must be in CIDR format + **Default**: 1.1.1.0/24 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | -An network in CIDR format with obsolete CIDR type. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. + **Default**: 1.1.1.0/24 |==== diff --git a/tests/results/test_without_family/00_6network.changelog.sh b/tests/results/test_without_family/00_6network.changelog.sh index 7e3e351fd..9731bbc1d 100644 --- a/tests/results/test_without_family/00_6network.changelog.sh +++ b/tests/results/test_without_family/00_6network.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6number.adoc b/tests/results/test_without_family/00_6number.adoc index 5d3e9aed1..dc717b03b 100644 --- a/tests/results/test_without_family/00_6number.adoc +++ b/tests/results/test_without_family/00_6number.adoc @@ -1,41 +1,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_without_family/00_6number.changelog.adoc b/tests/results/test_without_family/00_6number.changelog.adoc index c1a6b9d62..6e243c123 100644 --- a/tests/results/test_without_family/00_6number.changelog.adoc +++ b/tests/results/test_without_family/00_6number.changelog.adoc @@ -3,41 +3,23 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. + **Default**: 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. + **Default**: 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. + **Default**: 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -This forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. + **Default**: 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. + **Default**: 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. + **Default**: 10 |==== diff --git a/tests/results/test_without_family/00_6number.changelog.sh b/tests/results/test_without_family/00_6number.changelog.sh index 748c3d764..29aead8d3 100644 --- a/tests/results/test_without_family/00_6number.changelog.sh +++ b/tests/results/test_without_family/00_6number.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6port.adoc b/tests/results/test_without_family/00_6port.adoc index e33e12578..9d41fc661 100644 --- a/tests/results/test_without_family/00_6port.adoc +++ b/tests/results/test_without_family/00_6port.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -23,11 +17,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test_without_family/00_6port.changelog.adoc b/tests/results/test_without_family/00_6port.changelog.adoc index fdb211689..9f10776b3 100644 --- a/tests/results/test_without_family/00_6port.changelog.adoc +++ b/tests/results/test_without_family/00_6port.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | -A port variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `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 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with default value. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. + **Validators**: * well-known ports (1 to 1023) are allowed @@ -25,11 +19,8 @@ A port variable with default value. + * private ports (greater than 49152) are allowed **Default**: 8080 -| - -**variable3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | -A port variable with integer default value. + +| **variable3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. + **Validators**: * well-known ports (1 to 1023) are allowed diff --git a/tests/results/test_without_family/00_6port.changelog.sh b/tests/results/test_without_family/00_6port.changelog.sh index 8c38473dd..58f63e12c 100644 --- a/tests/results/test_without_family/00_6port.changelog.sh +++ b/tests/results/test_without_family/00_6port.changelog.sh @@ -1,39 +1,36 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6port.sh b/tests/results/test_without_family/00_6port.sh index 057034b5d..f1866a0a0 100644 --- a/tests/results/test_without_family/00_6port.sh +++ b/tests/results/test_without_family/00_6port.sh @@ -3,31 +3,31 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A port variable. โ”‚ โ”‚  port   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A port variable with default value. โ”‚ โ”‚  port   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable3 โ”‚ A port variable with integer default โ”‚ โ”‚  port   standard   mandatory  โ”‚ value. โ”‚ โ”‚ โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - well-known ports (1 to 1023) are โ”‚ +โ”‚ โ”‚ โ€ข well-known ports (1 to 1023) are โ”‚ โ”‚ โ”‚ allowed โ”‚ -โ”‚ โ”‚ - registred ports (1024 to 49151) โ”‚ -โ”‚ โ”‚ are allowed โ”‚ -โ”‚ โ”‚ - private ports (greater than 49152) โ”‚ +โ”‚ โ”‚ โ€ข registred ports (1024 to 49151) โ”‚ โ”‚ โ”‚ are allowed โ”‚ +โ”‚ โ”‚ โ€ข private ports (greater than โ”‚ +โ”‚ โ”‚ 49152) are allowed โ”‚ โ”‚ โ”‚ Default: 8080 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6regexp.adoc b/tests/results/test_without_family/00_6regexp.adoc index 3a18e2138..c89f805e9 100644 --- a/tests/results/test_without_family/00_6regexp.adoc +++ b/tests/results/test_without_family/00_6regexp.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test_without_family/00_6regexp.changelog.adoc b/tests/results/test_without_family/00_6regexp.changelog.adoc index ff2326130..c1bfa244f 100644 --- a/tests/results/test_without_family/00_6regexp.changelog.adoc +++ b/tests/results/test_without_family/00_6regexp.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: diff --git a/tests/results/test_without_family/00_6regexp.changelog.sh b/tests/results/test_without_family/00_6regexp.changelog.sh index a9acd0197..d54f564ae 100644 --- a/tests/results/test_without_family/00_6regexp.changelog.sh +++ b/tests/results/test_without_family/00_6regexp.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,7 +9,7 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6regexp.sh b/tests/results/test_without_family/00_6regexp.sh index b4467a7ea..e61c2f0cb 100644 --- a/tests/results/test_without_family/00_6regexp.sh +++ b/tests/results/test_without_family/00_6regexp.sh @@ -7,6 +7,6 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6regexp_link.adoc b/tests/results/test_without_family/00_6regexp_link.adoc index 8342d5ffc..0319df65d 100644 --- a/tests/results/test_without_family/00_6regexp_link.adoc +++ b/tests/results/test_without_family/00_6regexp_link.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "var1" + **Examples**: diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.adoc b/tests/results/test_without_family/00_6regexp_link.changelog.adoc index c153da21d..65f4796a3 100644 --- a/tests/results/test_without_family/00_6regexp_link.changelog.adoc +++ b/tests/results/test_without_family/00_6regexp_link.changelog.adoc @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: #a1a1a1 + **Examples**: * '#b1b1b1' * '#b2b2b2' -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Default**: the value of the variable "var1" + **Examples**: diff --git a/tests/results/test_without_family/00_6regexp_link.changelog.sh b/tests/results/test_without_family/00_6regexp_link.changelog.sh index cb179655c..417a78a4f 100644 --- a/tests/results/test_without_family/00_6regexp_link.changelog.sh +++ b/tests/results/test_without_family/00_6regexp_link.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -22,7 +19,7 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6regexp_link.sh b/tests/results/test_without_family/00_6regexp_link.sh index ce2e4928d..dcd126e27 100644 --- a/tests/results/test_without_family/00_6regexp_link.sh +++ b/tests/results/test_without_family/00_6regexp_link.sh @@ -7,8 +7,8 @@ โ”‚ โ”‚ "^#(?:[0-9a-f]{3}){1,2}$" โ”‚ โ”‚ โ”‚ Default: #a1a1a1 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b1b1b1 โ”‚ -โ”‚ โ”‚ - #b2b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b1b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b2b2b2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  regexp   standard   mandatory  โ”‚ Validator: text based with regular โ”‚ @@ -17,6 +17,6 @@ โ”‚ โ”‚ Default: the value of the variable โ”‚ โ”‚ โ”‚ "var1" โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - #b2b1b1 โ”‚ -โ”‚ โ”‚ - #b3b2b2 โ”‚ +โ”‚ โ”‚ โ€ข #b2b1b1 โ”‚ +โ”‚ โ”‚ โ€ข #b3b2b2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6secret.adoc b/tests/results/test_without_family/00_6secret.adoc index 400a4cac6..6434cc594 100644 --- a/tests/results/test_without_family/00_6secret.adoc +++ b/tests/results/test_without_family/00_6secret.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test_without_family/00_6secret.changelog.adoc b/tests/results/test_without_family/00_6secret.changelog.adoc index 67499b241..cf59fb9d7 100644 --- a/tests/results/test_without_family/00_6secret.changelog.adoc +++ b/tests/results/test_without_family/00_6secret.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + -**Default**: value +| Variable | Description +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + +**Default**: value |==== diff --git a/tests/results/test_without_family/00_6secret.changelog.sh b/tests/results/test_without_family/00_6secret.changelog.sh index 4d885ab62..217dfd07e 100644 --- a/tests/results/test_without_family/00_6secret.changelog.sh +++ b/tests/results/test_without_family/00_6secret.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_6secret_param.adoc b/tests/results/test_without_family/00_6secret_param.adoc index c6683bda7..1cea0a5d9 100644 --- a/tests/results/test_without_family/00_6secret_param.adoc +++ b/tests/results/test_without_family/00_6secret_param.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test_without_family/00_6secret_param.changelog.adoc b/tests/results/test_without_family/00_6secret_param.changelog.adoc index 580137e24..590336617 100644 --- a/tests/results/test_without_family/00_6secret_param.changelog.adoc +++ b/tests/results/test_without_family/00_6secret_param.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**secret1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | -The first variable. + +| **secret1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. + **Validator**: minimum length for the secret is 10 characters -| - -**secret2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The second variable. + +| **secret2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. + **Validators**: * maximum length for the secret is 10 characters * 'forbidden characters: "$" and "^"' **Default**: value -| - -**secret3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | -The third variable. + +| **secret3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. + **Validators**: * maximum length for the secret is 10 characters diff --git a/tests/results/test_without_family/00_6secret_param.changelog.sh b/tests/results/test_without_family/00_6secret_param.changelog.sh index 1d32dd6dc..15eb7f3c4 100644 --- a/tests/results/test_without_family/00_6secret_param.changelog.sh +++ b/tests/results/test_without_family/00_6secret_param.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,16 +9,16 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6secret_param.sh b/tests/results/test_without_family/00_6secret_param.sh index bcf6dbf70..1ea4c2dc7 100644 --- a/tests/results/test_without_family/00_6secret_param.sh +++ b/tests/results/test_without_family/00_6secret_param.sh @@ -7,15 +7,15 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret2 โ”‚ The second variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" and "^" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" and "^" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ secret3 โ”‚ The third variable. โ”‚ โ”‚  secret   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - maximum length for the secret is โ”‚ +โ”‚ โ”‚ โ€ข maximum length for the secret is โ”‚ โ”‚ โ”‚ 10 characters โ”‚ -โ”‚ โ”‚ - forbidden characters: "$" โ”‚ +โ”‚ โ”‚ โ€ข forbidden characters: "$" โ”‚ โ”‚ โ”‚ Default: value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_6string.adoc b/tests/results/test_without_family/00_6string.adoc index 9e8e27fe0..ed6bbbcce 100644 --- a/tests/results/test_without_family/00_6string.adoc +++ b/tests/results/test_without_family/00_6string.adoc @@ -1,50 +1,26 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test_without_family/00_6string.changelog.adoc b/tests/results/test_without_family/00_6string.changelog.adoc index 6897e19fb..2f485bb75 100644 --- a/tests/results/test_without_family/00_6string.changelog.adoc +++ b/tests/results/test_without_family/00_6string.changelog.adoc @@ -2,51 +2,27 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The forth variable. + -**Default**: value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The fifth variable. + -**Default**: value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The sixth variable. + -**Default**: value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The seventh variable. + -**Default**: 8080 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The height variable. + -**Default**: true +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. + +**Default**: value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. + +**Default**: value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. + +**Default**: value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. + +**Default**: 8080 +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. + +**Default**: true |==== diff --git a/tests/results/test_without_family/00_6string.changelog.sh b/tests/results/test_without_family/00_6string.changelog.sh index b49fe84e9..894d9706b 100644 --- a/tests/results/test_without_family/00_6string.changelog.sh +++ b/tests/results/test_without_family/00_6string.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7choice_quote.adoc b/tests/results/test_without_family/00_7choice_quote.adoc index b96dc5547..b0e6617fa 100644 --- a/tests/results/test_without_family/00_7choice_quote.adoc +++ b/tests/results/test_without_family/00_7choice_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test_without_family/00_7choice_quote.changelog.adoc b/tests/results/test_without_family/00_7choice_quote.changelog.adoc index e7bde5e28..4452928e5 100644 --- a/tests/results/test_without_family/00_7choice_quote.changelog.adoc +++ b/tests/results/test_without_family/00_7choice_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * quote' **โ† (default)** diff --git a/tests/results/test_without_family/00_7choice_quote.changelog.sh b/tests/results/test_without_family/00_7choice_quote.changelog.sh index a32f43fdf..522a2649a 100644 --- a/tests/results/test_without_family/00_7choice_quote.changelog.sh +++ b/tests/results/test_without_family/00_7choice_quote.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_7choice_quote.sh b/tests/results/test_without_family/00_7choice_quote.sh index 41ceccc33..fc4f15808 100644 --- a/tests/results/test_without_family/00_7choice_quote.sh +++ b/tests/results/test_without_family/00_7choice_quote.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - quote' โ† (default) โ”‚ -โ”‚ โ”‚ - quote" โ”‚ -โ”‚ โ”‚ - quote"' โ”‚ +โ”‚ โ”‚ โ€ข quote' โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข quote" โ”‚ +โ”‚ โ”‚ โ€ข quote"' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_7help.adoc b/tests/results/test_without_family/00_7help.adoc index 85a7ff7aa..e4ca62494 100644 --- a/tests/results/test_without_family/00_7help.adoc +++ b/tests/results/test_without_family/00_7help.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test_without_family/00_7help.changelog.adoc b/tests/results/test_without_family/00_7help.changelog.adoc index 12b752466..8331d561b 100644 --- a/tests/results/test_without_family/00_7help.changelog.adoc +++ b/tests/results/test_without_family/00_7help.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Multi line Help With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Multi line Help With useful information. diff --git a/tests/results/test_without_family/00_7help.changelog.sh b/tests/results/test_without_family/00_7help.changelog.sh index 0e3f0589a..2ffef2a58 100644 --- a/tests/results/test_without_family/00_7help.changelog.sh +++ b/tests/results/test_without_family/00_7help.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7help_quote.adoc b/tests/results/test_without_family/00_7help_quote.adoc index 0cd8cd540..1c0eacd17 100644 --- a/tests/results/test_without_family/00_7help_quote.adoc +++ b/tests/results/test_without_family/00_7help_quote.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test_without_family/00_7help_quote.changelog.adoc b/tests/results/test_without_family/00_7help_quote.changelog.adoc index c47c21116..ccde51720 100644 --- a/tests/results/test_without_family/00_7help_quote.changelog.adoc +++ b/tests/results/test_without_family/00_7help_quote.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + Message with '. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + Message with ". |==== diff --git a/tests/results/test_without_family/00_7help_quote.changelog.sh b/tests/results/test_without_family/00_7help_quote.changelog.sh index 0c9de0f5d..449eefbc2 100644 --- a/tests/results/test_without_family/00_7help_quote.changelog.sh +++ b/tests/results/test_without_family/00_7help_quote.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7help_sup.adoc b/tests/results/test_without_family/00_7help_sup.adoc index e3bb1909c..1e5a359f9 100644 --- a/tests/results/test_without_family/00_7help_sup.adoc +++ b/tests/results/test_without_family/00_7help_sup.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test_without_family/00_7help_sup.changelog.adoc b/tests/results/test_without_family/00_7help_sup.changelog.adoc index a93d702ac..5cfc973c5 100644 --- a/tests/results/test_without_family/00_7help_sup.changelog.adoc +++ b/tests/results/test_without_family/00_7help_sup.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first . + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first . + Multi line With useful information. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second . + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second . + Multi line With useful information. diff --git a/tests/results/test_without_family/00_7help_sup.changelog.sh b/tests/results/test_without_family/00_7help_sup.changelog.sh index 9ae697573..c49e011f2 100644 --- a/tests/results/test_without_family/00_7help_sup.changelog.sh +++ b/tests/results/test_without_family/00_7help_sup.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7value_doublequote.adoc b/tests/results/test_without_family/00_7value_doublequote.adoc index f6eb0be02..ef0497659 100644 --- a/tests/results/test_without_family/00_7value_doublequote.adoc +++ b/tests/results/test_without_family/00_7value_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test_without_family/00_7value_doublequote.changelog.adoc b/tests/results/test_without_family/00_7value_doublequote.changelog.adoc index db04d2baf..69d51a11c 100644 --- a/tests/results/test_without_family/00_7value_doublequote.changelog.adoc +++ b/tests/results/test_without_family/00_7value_doublequote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote" |==== diff --git a/tests/results/test_without_family/00_7value_doublequote.changelog.sh b/tests/results/test_without_family/00_7value_doublequote.changelog.sh index aa1d7978f..608c1868e 100644 --- a/tests/results/test_without_family/00_7value_doublequote.changelog.sh +++ b/tests/results/test_without_family/00_7value_doublequote.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7value_doublequote2.adoc b/tests/results/test_without_family/00_7value_doublequote2.adoc index f1fb0dbae..581bbf588 100644 --- a/tests/results/test_without_family/00_7value_doublequote2.adoc +++ b/tests/results/test_without_family/00_7value_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test_without_family/00_7value_doublequote2.changelog.adoc b/tests/results/test_without_family/00_7value_doublequote2.changelog.adoc index 8481ab547..356f7fca1 100644 --- a/tests/results/test_without_family/00_7value_doublequote2.changelog.adoc +++ b/tests/results/test_without_family/00_7value_doublequote2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote'" |==== diff --git a/tests/results/test_without_family/00_7value_doublequote2.changelog.sh b/tests/results/test_without_family/00_7value_doublequote2.changelog.sh index 5f750b650..be085afbb 100644 --- a/tests/results/test_without_family/00_7value_doublequote2.changelog.sh +++ b/tests/results/test_without_family/00_7value_doublequote2.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7value_doublequote3.adoc b/tests/results/test_without_family/00_7value_doublequote3.adoc index c4b225580..1c886b9fc 100644 --- a/tests/results/test_without_family/00_7value_doublequote3.adoc +++ b/tests/results/test_without_family/00_7value_doublequote3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test_without_family/00_7value_doublequote3.changelog.adoc b/tests/results/test_without_family/00_7value_doublequote3.changelog.adoc index 5897cbba2..36da69a55 100644 --- a/tests/results/test_without_family/00_7value_doublequote3.changelog.adoc +++ b/tests/results/test_without_family/00_7value_doublequote3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote\"\' |==== diff --git a/tests/results/test_without_family/00_7value_doublequote3.changelog.sh b/tests/results/test_without_family/00_7value_doublequote3.changelog.sh index 51919cccc..64c418118 100644 --- a/tests/results/test_without_family/00_7value_doublequote3.changelog.sh +++ b/tests/results/test_without_family/00_7value_doublequote3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_7value_quote.adoc b/tests/results/test_without_family/00_7value_quote.adoc index 2c0d7a707..98146a751 100644 --- a/tests/results/test_without_family/00_7value_quote.adoc +++ b/tests/results/test_without_family/00_7value_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test_without_family/00_7value_quote.changelog.adoc b/tests/results/test_without_family/00_7value_quote.changelog.adoc index 11368fc34..acd727134 100644 --- a/tests/results/test_without_family/00_7value_quote.changelog.adoc +++ b/tests/results/test_without_family/00_7value_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: quote' |==== diff --git a/tests/results/test_without_family/00_7value_quote.changelog.sh b/tests/results/test_without_family/00_7value_quote.changelog.sh index 220adc79e..75436bed8 100644 --- a/tests/results/test_without_family/00_7value_quote.changelog.sh +++ b/tests/results/test_without_family/00_7value_quote.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_8calculation_information.adoc b/tests/results/test_without_family/00_8calculation_information.adoc index b6e4f1931..149466f2d 100644 --- a/tests/results/test_without_family/00_8calculation_information.adoc +++ b/tests/results/test_without_family/00_8calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_without_family/00_8calculation_information.changelog.adoc b/tests/results/test_without_family/00_8calculation_information.changelog.adoc index 0c2ee27ea..3f407aa32 100644 --- a/tests/results/test_without_family/00_8calculation_information.changelog.adoc +++ b/tests/results/test_without_family/00_8calculation_information.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_without_family/00_8calculation_information.changelog.sh b/tests/results/test_without_family/00_8calculation_information.changelog.sh index ef9f091c5..5c115104e 100644 --- a/tests/results/test_without_family/00_8calculation_information.changelog.sh +++ b/tests/results/test_without_family/00_8calculation_information.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_8test.adoc b/tests/results/test_without_family/00_8test.adoc index 09525034e..c956c5f66 100644 --- a/tests/results/test_without_family/00_8test.adoc +++ b/tests/results/test_without_family/00_8test.adoc @@ -1,50 +1,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test_without_family/00_8test.changelog.adoc b/tests/results/test_without_family/00_8test.changelog.adoc index fda97ae17..441599f98 100644 --- a/tests/results/test_without_family/00_8test.changelog.adoc +++ b/tests/results/test_without_family/00_8test.changelog.adoc @@ -3,50 +3,32 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Example**: test -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + **Default**: value + **Example**: test -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. + **Examples**: * test1 * test2 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. + **Examples**: * null * test1 * test2 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. + **Default**: true + **Example**: false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. + **Examples**: * test1 diff --git a/tests/results/test_without_family/00_8test.changelog.sh b/tests/results/test_without_family/00_8test.changelog.sh index 80937f6fb..2709c5129 100644 --- a/tests/results/test_without_family/00_8test.changelog.sh +++ b/tests/results/test_without_family/00_8test.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -15,14 +12,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -30,7 +27,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_8test.sh b/tests/results/test_without_family/00_8test.sh index 7b48b4b8e..99326a784 100644 --- a/tests/results/test_without_family/00_8test.sh +++ b/tests/results/test_without_family/00_8test.sh @@ -10,14 +10,14 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard  โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - null โ”‚ -โ”‚ โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ +โ”‚ โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ @@ -25,6 +25,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - test1 โ”‚ -โ”‚ โ”‚ - test2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข test1 โ”‚ +โ”‚ โ”‚ โ€ข test2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9choice_variable_multi.adoc b/tests/results/test_without_family/00_9choice_variable_multi.adoc index f5b7d2ee6..f83c7707f 100644 --- a/tests/results/test_without_family/00_9choice_variable_multi.adoc +++ b/tests/results/test_without_family/00_9choice_variable_multi.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test_without_family/00_9choice_variable_multi.changelog.adoc b/tests/results/test_without_family/00_9choice_variable_multi.changelog.adoc index 3c58e2fae..3f56da4bd 100644 --- a/tests/results/test_without_family/00_9choice_variable_multi.changelog.adoc +++ b/tests/results/test_without_family/00_9choice_variable_multi.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. + **Choices**: * val1 * val2 -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. + **Choices**: * val1 diff --git a/tests/results/test_without_family/00_9choice_variable_multi.changelog.sh b/tests/results/test_without_family/00_9choice_variable_multi.changelog.sh index c4a725b4d..15073cff5 100644 --- a/tests/results/test_without_family/00_9choice_variable_multi.changelog.sh +++ b/tests/results/test_without_family/00_9choice_variable_multi.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9choice_variable_multi.sh b/tests/results/test_without_family/00_9choice_variable_multi.sh index c0a7e6f08..0eb6ea7ea 100644 --- a/tests/results/test_without_family/00_9choice_variable_multi.sh +++ b/tests/results/test_without_family/00_9choice_variable_multi.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  choice   basic   mandatory   unique  โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   standard   unique    โ”‚ Choices: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9choice_variables.adoc b/tests/results/test_without_family/00_9choice_variables.adoc index 18df0c69a..17a11721c 100644 --- a/tests/results/test_without_family/00_9choice_variables.adoc +++ b/tests/results/test_without_family/00_9choice_variables.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "source_variable_1" diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.adoc b/tests/results/test_without_family/00_9choice_variables.changelog.adoc index a23d36558..76394b41a 100644 --- a/tests/results/test_without_family/00_9choice_variables.changelog.adoc +++ b/tests/results/test_without_family/00_9choice_variables.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**source_variable_1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The first source variable. + +| **source_variable_1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. + **Default**: val1 -| - -**source_variable_2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The second source variable. + +| **source_variable_2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. + **Default**: val2 -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * the value of the variable "source_variable_1" diff --git a/tests/results/test_without_family/00_9choice_variables.changelog.sh b/tests/results/test_without_family/00_9choice_variables.changelog.sh index 273eac087..930b1ddd8 100644 --- a/tests/results/test_without_family/00_9choice_variables.changelog.sh +++ b/tests/results/test_without_family/00_9choice_variables.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -14,9 +11,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9choice_variables.sh b/tests/results/test_without_family/00_9choice_variables.sh index a821b5e45..0b101e6ef 100644 --- a/tests/results/test_without_family/00_9choice_variables.sh +++ b/tests/results/test_without_family/00_9choice_variables.sh @@ -9,9 +9,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "source_variable_2" โ”‚ โ”‚ โ”‚ Default: val1 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation.adoc b/tests/results/test_without_family/00_9default_calculation.adoc index 257fbd20b..4e643f468 100644 --- a/tests/results/test_without_family/00_9default_calculation.adoc +++ b/tests/results/test_without_family/00_9default_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test_without_family/00_9default_calculation.changelog.adoc b/tests/results/test_without_family/00_9default_calculation.changelog.adoc index fd9263b3c..e8e43754f 100644 --- a/tests/results/test_without_family/00_9default_calculation.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: concat all parameters |==== diff --git a/tests/results/test_without_family/00_9default_calculation.changelog.sh b/tests/results/test_without_family/00_9default_calculation.changelog.sh index 67cab1155..60fdad0c7 100644 --- a/tests/results/test_without_family/00_9default_calculation.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_calculation_information.adoc b/tests/results/test_without_family/00_9default_calculation_information.adoc index 3e37b10bf..535569083 100644 --- a/tests/results/test_without_family/00_9default_calculation_information.adoc +++ b/tests/results/test_without_family/00_9default_calculation_information.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test_without_family/00_9default_calculation_information.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_information.changelog.adoc index c33099795..04ea04f36 100644 --- a/tests/results/test_without_family/00_9default_calculation_information.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_information.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns the information |==== diff --git a/tests/results/test_without_family/00_9default_calculation_information.changelog.sh b/tests/results/test_without_family/00_9default_calculation_information.changelog.sh index 0cd7b5f54..29befd333 100644 --- a/tests/results/test_without_family/00_9default_calculation_information.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_information.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_calculation_information_other_variable.adoc b/tests/results/test_without_family/00_9default_calculation_information_other_variable.adoc index fcf7ac9eb..2de74ef4c 100644 --- a/tests/results/test_without_family/00_9default_calculation_information_other_variable.adoc +++ b/tests/results/test_without_family/00_9default_calculation_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.adoc index e3cb4cd95..a656ae450 100644 --- a/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: depends on a calculation +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.sh b/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.sh index cefcb80ca..f9223d614 100644 --- a/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_information_other_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc index 56771cc7f..3dd666ae0 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh index 0fb8d5111..0e37716c5 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc index 56771cc7f..3dd666ae0 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh index 0fb8d5111..0e37716c5 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional2.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc index e5a9c88ee..ba79d1d20 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc index 56771cc7f..3dd666ae0 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: val1 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: - -* the value of the variable "my_variable" if it is defined +* the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh index 0fb8d5111..0e37716c5 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh index 632d1d854..3a0ebc107 100644 --- a/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh +++ b/tests/results/test_without_family/00_9default_calculation_multi_optional_default.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - the value of the variable โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข the value of the variable โ”‚ โ”‚ unique   multiple  โ”‚ "my_variable" if it is defined โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/00_9default_calculation_optional.adoc b/tests/results/test_without_family/00_9default_calculation_optional.adoc index 2e2886528..6a26fd2ce 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional.adoc +++ b/tests/results/test_without_family/00_9default_calculation_optional.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test_without_family/00_9default_calculation_optional.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_optional.changelog.adoc index 93b25fce7..d40a9a262 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_optional.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | - +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | |==== diff --git a/tests/results/test_without_family/00_9default_calculation_optional.changelog.sh b/tests/results/test_without_family/00_9default_calculation_optional.changelog.sh index adadf7e60..e128c8b4c 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc b/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc index 1897a5f16..372b70df7 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc +++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "my_variable" if it is defined +* val2 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc index abe41b201..329f676d4 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.adoc @@ -2,19 +2,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**my_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **my_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 -* val2 -| - -**my_calculated_variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: the value of the variable "my_variable" if it is defined +* val2 +| **my_calculated_variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "my_variable" if it is defined |==== diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh index 7c682d882..6e5c1f435 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "my_variable" if it is defined โ”‚ diff --git a/tests/results/test_without_family/00_9default_calculation_optional_exists.sh b/tests/results/test_without_family/00_9default_calculation_optional_exists.sh index 4882beddd..d97720748 100644 --- a/tests/results/test_without_family/00_9default_calculation_optional_exists.sh +++ b/tests/results/test_without_family/00_9default_calculation_optional_exists.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_variable โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_calculated_variable โ”‚ Default: the value of the variable โ”‚ โ”‚  string   standard   mandatory    โ”‚ "my_variable" if it is defined โ”‚ diff --git a/tests/results/test_without_family/00_9default_calculation_param_optional.adoc b/tests/results/test_without_family/00_9default_calculation_param_optional.adoc index c2c9e95bf..26aea7491 100644 --- a/tests/results/test_without_family/00_9default_calculation_param_optional.adoc +++ b/tests/results/test_without_family/00_9default_calculation_param_optional.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.adoc b/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.adoc index ee9afde96..8ca3cd970 100644 --- a/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.adoc +++ b/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. + **Default**: returns a value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.sh b/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.sh index 2cf41f26a..5adb4f7b4 100644 --- a/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.sh +++ b/tests/results/test_without_family/00_9default_calculation_param_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_information_other_variable.adoc b/tests/results/test_without_family/00_9default_information_other_variable.adoc index c1b9bc2d5..f8a2e5d07 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable.adoc +++ b/tests/results/test_without_family/00_9default_information_other_variable.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc b/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc index 82fa4a3ed..3c3dd208f 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc +++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh b/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh index 11c0fe2bd..c0a8c01ad 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh +++ b/tests/results/test_without_family/00_9default_information_other_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.adoc b/tests/results/test_without_family/00_9default_information_other_variable2.adoc index c1b9bc2d5..f8a2e5d07 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable2.adoc +++ b/tests/results/test_without_family/00_9default_information_other_variable2.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc index 82fa4a3ed..3c3dd208f 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc +++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "var1" +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "var1" |==== diff --git a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh index 11c0fe2bd..c0a8c01ad 100644 --- a/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh +++ b/tests/results/test_without_family/00_9default_information_other_variable2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_integer.adoc b/tests/results/test_without_family/00_9default_integer.adoc index 505d8a5ea..6bad7f1f7 100644 --- a/tests/results/test_without_family/00_9default_integer.adoc +++ b/tests/results/test_without_family/00_9default_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_9default_integer.changelog.adoc b/tests/results/test_without_family/00_9default_integer.changelog.adoc index 5523aa1ff..858237ad3 100644 --- a/tests/results/test_without_family/00_9default_integer.changelog.adoc +++ b/tests/results/test_without_family/00_9default_integer.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_9default_integer.changelog.sh b/tests/results/test_without_family/00_9default_integer.changelog.sh index d2b081f51..d4cb02c4e 100644 --- a/tests/results/test_without_family/00_9default_integer.changelog.sh +++ b/tests/results/test_without_family/00_9default_integer.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/00_9default_number.adoc b/tests/results/test_without_family/00_9default_number.adoc index 505d8a5ea..6bad7f1f7 100644 --- a/tests/results/test_without_family/00_9default_number.adoc +++ b/tests/results/test_without_family/00_9default_number.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_9default_number.changelog.adoc b/tests/results/test_without_family/00_9default_number.changelog.adoc index 5523aa1ff..858237ad3 100644 --- a/tests/results/test_without_family/00_9default_number.changelog.adoc +++ b/tests/results/test_without_family/00_9default_number.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: choice for 0 to 9 + **Default**: 9 |==== diff --git a/tests/results/test_without_family/00_9default_number.changelog.sh b/tests/results/test_without_family/00_9default_number.changelog.sh index d2b081f51..d4cb02c4e 100644 --- a/tests/results/test_without_family/00_9default_number.changelog.sh +++ b/tests/results/test_without_family/00_9default_number.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/01_6boolean_multi.adoc b/tests/results/test_without_family/01_6boolean_multi.adoc index 4cb937a4a..d04551a3b 100644 --- a/tests/results/test_without_family/01_6boolean_multi.adoc +++ b/tests/results/test_without_family/01_6boolean_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test_without_family/01_6boolean_multi.changelog.adoc b/tests/results/test_without_family/01_6boolean_multi.changelog.adoc index a36a90b17..a45d48dae 100644 --- a/tests/results/test_without_family/01_6boolean_multi.changelog.adoc +++ b/tests/results/test_without_family/01_6boolean_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * true -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * true -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * true -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * false -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * false -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * false -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * true -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * true diff --git a/tests/results/test_without_family/01_6boolean_multi.changelog.sh b/tests/results/test_without_family/01_6boolean_multi.changelog.sh index 4f9fd0385..bc0439bc0 100644 --- a/tests/results/test_without_family/01_6boolean_multi.changelog.sh +++ b/tests/results/test_without_family/01_6boolean_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6boolean_multi.sh b/tests/results/test_without_family/01_6boolean_multi.sh index c4a9b1a8b..924dc338c 100644 --- a/tests/results/test_without_family/01_6boolean_multi.sh +++ b/tests/results/test_without_family/01_6boolean_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - false โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข false โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  boolean   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - true โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข true โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6custom_multi.adoc b/tests/results/test_without_family/01_6custom_multi.adoc index 1a52e631b..b2627a224 100644 --- a/tests/results/test_without_family/01_6custom_multi.adoc +++ b/tests/results/test_without_family/01_6custom_multi.adoc @@ -1,18 +1,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/01_6custom_multi.changelog.adoc b/tests/results/test_without_family/01_6custom_multi.changelog.adoc index 8f389e2ec..aeb2bb7ae 100644 --- a/tests/results/test_without_family/01_6custom_multi.changelog.adoc +++ b/tests/results/test_without_family/01_6custom_multi.changelog.adoc @@ -2,19 +2,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**custom1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | -A first custom variable. -| - -**custom2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | -A second custom variable. + +| Variable | Description +| **custom1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable. +| **custom2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/01_6custom_multi.changelog.sh b/tests/results/test_without_family/01_6custom_multi.changelog.sh index a4da6afd5..212f308e7 100644 --- a/tests/results/test_without_family/01_6custom_multi.changelog.sh +++ b/tests/results/test_without_family/01_6custom_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,6 +9,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6custom_multi.sh b/tests/results/test_without_family/01_6custom_multi.sh index 7386f5d89..4874704f4 100644 --- a/tests/results/test_without_family/01_6custom_multi.sh +++ b/tests/results/test_without_family/01_6custom_multi.sh @@ -7,5 +7,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ custom2 โ”‚ A second custom variable. โ”‚ โ”‚  custom   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6float_multi.adoc b/tests/results/test_without_family/01_6float_multi.adoc index 119a08405..1ae2c9de1 100644 --- a/tests/results/test_without_family/01_6float_multi.adoc +++ b/tests/results/test_without_family/01_6float_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test_without_family/01_6float_multi.changelog.adoc b/tests/results/test_without_family/01_6float_multi.changelog.adoc index 735711d89..556d28f5c 100644 --- a/tests/results/test_without_family/01_6float_multi.changelog.adoc +++ b/tests/results/test_without_family/01_6float_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0.0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0.0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0.0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10.1 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10.1 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10.1 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0.0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0.0 diff --git a/tests/results/test_without_family/01_6float_multi.changelog.sh b/tests/results/test_without_family/01_6float_multi.changelog.sh index 9fb35bd2e..ab15256f7 100644 --- a/tests/results/test_without_family/01_6float_multi.changelog.sh +++ b/tests/results/test_without_family/01_6float_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6float_multi.sh b/tests/results/test_without_family/01_6float_multi.sh index 84a9a15b8..17675ab21 100644 --- a/tests/results/test_without_family/01_6float_multi.sh +++ b/tests/results/test_without_family/01_6float_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10.1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10.1 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  float   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0.0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0.0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6integer_multi.adoc b/tests/results/test_without_family/01_6integer_multi.adoc index 348205b5d..95332b79c 100644 --- a/tests/results/test_without_family/01_6integer_multi.adoc +++ b/tests/results/test_without_family/01_6integer_multi.adoc @@ -1,67 +1,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test_without_family/01_6integer_multi.changelog.adoc b/tests/results/test_without_family/01_6integer_multi.changelog.adoc index ff9405d9b..af7417cfb 100644 --- a/tests/results/test_without_family/01_6integer_multi.changelog.adoc +++ b/tests/results/test_without_family/01_6integer_multi.changelog.adoc @@ -3,67 +3,43 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. + **Default**: * 0 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * 0 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. + **Default**: * 0 -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: * 10 -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: * 10 -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: * 10 -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: * 0 -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: * 0 diff --git a/tests/results/test_without_family/01_6integer_multi.changelog.sh b/tests/results/test_without_family/01_6integer_multi.changelog.sh index cbd680fa7..ff6e56795 100644 --- a/tests/results/test_without_family/01_6integer_multi.changelog.sh +++ b/tests/results/test_without_family/01_6integer_multi.changelog.sh @@ -1,41 +1,38 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6integer_multi.sh b/tests/results/test_without_family/01_6integer_multi.sh index 599788b4a..a4d9faded 100644 --- a/tests/results/test_without_family/01_6integer_multi.sh +++ b/tests/results/test_without_family/01_6integer_multi.sh @@ -3,33 +3,33 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The first variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var3 โ”‚ The third variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 10 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 10 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  integer   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - 0 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6integer_multi_mandatory.adoc b/tests/results/test_without_family/01_6integer_multi_mandatory.adoc index fa997f439..3ba69826e 100644 --- a/tests/results/test_without_family/01_6integer_multi_mandatory.adoc +++ b/tests/results/test_without_family/01_6integer_multi_mandatory.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.adoc b/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.adoc index 7312b4332..a8ae75362 100644 --- a/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.adoc +++ b/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.adoc @@ -2,11 +2,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | -The first variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable. |==== diff --git a/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.sh b/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.sh index 7f53d0562..5d53313b3 100644 --- a/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.sh +++ b/tests/results/test_without_family/01_6integer_multi_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/01_6string_empty.adoc b/tests/results/test_without_family/01_6string_empty.adoc index 971a44f75..b0445a7d8 100644 --- a/tests/results/test_without_family/01_6string_empty.adoc +++ b/tests/results/test_without_family/01_6string_empty.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test_without_family/01_6string_empty.changelog.adoc b/tests/results/test_without_family/01_6string_empty.changelog.adoc index 3648a786d..55c94c0fc 100644 --- a/tests/results/test_without_family/01_6string_empty.changelog.adoc +++ b/tests/results/test_without_family/01_6string_empty.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. + **Default**: * value diff --git a/tests/results/test_without_family/01_6string_empty.changelog.sh b/tests/results/test_without_family/01_6string_empty.changelog.sh index 9c89557b9..ba733e4e0 100644 --- a/tests/results/test_without_family/01_6string_empty.changelog.sh +++ b/tests/results/test_without_family/01_6string_empty.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6string_empty.sh b/tests/results/test_without_family/01_6string_empty.sh index 5d4e5f22d..3e00b583f 100644 --- a/tests/results/test_without_family/01_6string_empty.sh +++ b/tests/results/test_without_family/01_6string_empty.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The second variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ -โ”‚ โ”‚ - null โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ +โ”‚ โ”‚ โ€ข null โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6string_multi.adoc b/tests/results/test_without_family/01_6string_multi.adoc index 8e03213be..dac961c65 100644 --- a/tests/results/test_without_family/01_6string_multi.adoc +++ b/tests/results/test_without_family/01_6string_multi.adoc @@ -1,60 +1,36 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/01_6string_multi.changelog.adoc b/tests/results/test_without_family/01_6string_multi.changelog.adoc index 20d64ec00..e1d974f90 100644 --- a/tests/results/test_without_family/01_6string_multi.changelog.adoc +++ b/tests/results/test_without_family/01_6string_multi.changelog.adoc @@ -2,61 +2,37 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The first variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The third variable. -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The forth variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable. +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. + **Default**: -* value -| - -**var5** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The fifth variable. + +* value +| **var5** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. + **Default**: -* value -| - -**var6** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The sixth variable. + +* value +| **var6** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. + **Default**: -* value -| - -**var7** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The seventh variable. + +* value +| **var7** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. + **Default**: -* value -| - -**var8** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The eighth variable. + +* value +| **var8** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/01_6string_multi.changelog.sh b/tests/results/test_without_family/01_6string_multi.changelog.sh index 569ed7837..27f990052 100644 --- a/tests/results/test_without_family/01_6string_multi.changelog.sh +++ b/tests/results/test_without_family/01_6string_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -20,22 +17,22 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6string_multi.sh b/tests/results/test_without_family/01_6string_multi.sh index 80633d41c..4d2fc57de 100644 --- a/tests/results/test_without_family/01_6string_multi.sh +++ b/tests/results/test_without_family/01_6string_multi.sh @@ -15,21 +15,21 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var4 โ”‚ The forth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var5 โ”‚ The fifth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var6 โ”‚ The sixth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var7 โ”‚ The seventh variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var8 โ”‚ The eighth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_6string_multi_length.adoc b/tests/results/test_without_family/01_6string_multi_length.adoc index bc7a95d0a..f543163c0 100644 --- a/tests/results/test_without_family/01_6string_multi_length.adoc +++ b/tests/results/test_without_family/01_6string_multi_length.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The variable. + +| **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. + +| **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 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 index a487ee965..f99b7a7e5 100644 --- a/tests/results/test_without_family/01_6string_multi_length.changelog.adoc +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.adoc @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -The variable. + +| **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. + +| **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 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 index 61bb6ec1a..b15fcbaa4 100644 --- a/tests/results/test_without_family/01_6string_multi_length.changelog.sh +++ b/tests/results/test_without_family/01_6string_multi_length.changelog.sh @@ -1,24 +1,21 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validators: โ”‚ -โ”‚ unique   multiple  โ”‚ - needs a minimum of 1 values โ”‚ -โ”‚ โ”‚ - needs a maximum of 4 values โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข 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 index 60f4b2eeb..bd9e70428 100644 --- a/tests/results/test_without_family/01_6string_multi_length.sh +++ b/tests/results/test_without_family/01_6string_multi_length.sh @@ -4,15 +4,15 @@ โ”‚ var1 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validator: needs exactly 3 values โ”‚ โ”‚ unique   multiple  โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ -โ”‚ โ”‚ - val3 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ +โ”‚ โ”‚ โ€ข val3 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Validators: โ”‚ -โ”‚ unique   multiple  โ”‚ - needs a minimum of 1 values โ”‚ -โ”‚ โ”‚ - needs a maximum of 4 values โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข needs a minimum of 1 values โ”‚ +โ”‚ โ”‚ โ€ข needs a maximum of 4 values โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - val4 โ”‚ -โ”‚ โ”‚ - val5 โ”‚ +โ”‚ โ”‚ โ€ข val4 โ”‚ +โ”‚ โ”‚ โ€ข val5 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_doublequote.adoc b/tests/results/test_without_family/01_7value_multi_doublequote.adoc index 70f25d0dc..daa81a7d9 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote.adoc +++ b/tests/results/test_without_family/01_7value_multi_doublequote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test_without_family/01_7value_multi_doublequote.changelog.adoc b/tests/results/test_without_family/01_7value_multi_doublequote.changelog.adoc index b57facbb6..93a63d0b4 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote.changelog.adoc +++ b/tests/results/test_without_family/01_7value_multi_doublequote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote" diff --git a/tests/results/test_without_family/01_7value_multi_doublequote.changelog.sh b/tests/results/test_without_family/01_7value_multi_doublequote.changelog.sh index f2e03ffe0..e7cb6514e 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote.changelog.sh +++ b/tests/results/test_without_family/01_7value_multi_doublequote.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_doublequote.sh b/tests/results/test_without_family/01_7value_multi_doublequote.sh index 4083724d1..15717b829 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote.sh +++ b/tests/results/test_without_family/01_7value_multi_doublequote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_doublequote2.adoc b/tests/results/test_without_family/01_7value_multi_doublequote2.adoc index f9e12295a..3835173a8 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote2.adoc +++ b/tests/results/test_without_family/01_7value_multi_doublequote2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.adoc b/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.adoc index 192901350..4570e115f 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.adoc +++ b/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote'" diff --git a/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.sh b/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.sh index cd4017cfa..a6f51cda2 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.sh +++ b/tests/results/test_without_family/01_7value_multi_doublequote2.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_doublequote2.sh b/tests/results/test_without_family/01_7value_multi_doublequote2.sh index 48cd1c86a..021ff7f8d 100644 --- a/tests/results/test_without_family/01_7value_multi_doublequote2.sh +++ b/tests/results/test_without_family/01_7value_multi_doublequote2.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote'" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote'" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_quote.adoc b/tests/results/test_without_family/01_7value_multi_quote.adoc index 47da1f5a6..d031d6e4a 100644 --- a/tests/results/test_without_family/01_7value_multi_quote.adoc +++ b/tests/results/test_without_family/01_7value_multi_quote.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test_without_family/01_7value_multi_quote.changelog.adoc b/tests/results/test_without_family/01_7value_multi_quote.changelog.adoc index cf1b8f39e..7eeee3fd5 100644 --- a/tests/results/test_without_family/01_7value_multi_quote.changelog.adoc +++ b/tests/results/test_without_family/01_7value_multi_quote.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * quote' diff --git a/tests/results/test_without_family/01_7value_multi_quote.changelog.sh b/tests/results/test_without_family/01_7value_multi_quote.changelog.sh index e1334e2d3..339106923 100644 --- a/tests/results/test_without_family/01_7value_multi_quote.changelog.sh +++ b/tests/results/test_without_family/01_7value_multi_quote.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_7value_multi_quote.sh b/tests/results/test_without_family/01_7value_multi_quote.sh index d2e4a7949..a48dcf814 100644 --- a/tests/results/test_without_family/01_7value_multi_quote.sh +++ b/tests/results/test_without_family/01_7value_multi_quote.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - quote' โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข quote' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_8calculation_information_multi.adoc b/tests/results/test_without_family/01_8calculation_information_multi.adoc index e28f6c9d7..5523a4ac9 100644 --- a/tests/results/test_without_family/01_8calculation_information_multi.adoc +++ b/tests/results/test_without_family/01_8calculation_information_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_without_family/01_8calculation_information_multi.changelog.adoc b/tests/results/test_without_family/01_8calculation_information_multi.changelog.adoc index efe8d3835..5d607303c 100644 --- a/tests/results/test_without_family/01_8calculation_information_multi.changelog.adoc +++ b/tests/results/test_without_family/01_8calculation_information_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: get information test_information |==== diff --git a/tests/results/test_without_family/01_8calculation_information_multi.changelog.sh b/tests/results/test_without_family/01_8calculation_information_multi.changelog.sh index ad8d1f991..ca7f5d7cd 100644 --- a/tests/results/test_without_family/01_8calculation_information_multi.changelog.sh +++ b/tests/results/test_without_family/01_8calculation_information_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/01_9choice_variable_multi.adoc b/tests/results/test_without_family/01_9choice_variable_multi.adoc index 82a122d64..2ef2d6b8d 100644 --- a/tests/results/test_without_family/01_9choice_variable_multi.adoc +++ b/tests/results/test_without_family/01_9choice_variable_multi.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "variable1" |==== diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc b/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc index 643a175cc..d5956c9a5 100644 --- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc +++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * a * b * c -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A second variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A second variable. + **Choices**: the value of the variable "variable1" |==== diff --git a/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh b/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh index 99f08c231..7e8fa6768 100644 --- a/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh +++ b/tests/results/test_without_family/01_9choice_variable_multi.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/01_9choice_variable_multi.sh b/tests/results/test_without_family/01_9choice_variable_multi.sh index 19ab190fb..2c517ed14 100644 --- a/tests/results/test_without_family/01_9choice_variable_multi.sh +++ b/tests/results/test_without_family/01_9choice_variable_multi.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable1 โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ variable2 โ”‚ A second variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/01_9choice_variable_optional.adoc b/tests/results/test_without_family/01_9choice_variable_optional.adoc index 6d15b517b..0a090b686 100644 --- a/tests/results/test_without_family/01_9choice_variable_optional.adoc +++ b/tests/results/test_without_family/01_9choice_variable_optional.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_without_family/01_9choice_variable_optional.changelog.adoc b/tests/results/test_without_family/01_9choice_variable_optional.changelog.adoc index 404d946de..83ae3aec9 100644 --- a/tests/results/test_without_family/01_9choice_variable_optional.changelog.adoc +++ b/tests/results/test_without_family/01_9choice_variable_optional.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_without_family/01_9choice_variable_optional.changelog.sh b/tests/results/test_without_family/01_9choice_variable_optional.changelog.sh index 36caea432..c84fa7c24 100644 --- a/tests/results/test_without_family/01_9choice_variable_optional.changelog.sh +++ b/tests/results/test_without_family/01_9choice_variable_optional.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/01_9choice_variable_optional.sh b/tests/results/test_without_family/01_9choice_variable_optional.sh index 9239e8eea..09e323b2b 100644 --- a/tests/results/test_without_family/01_9choice_variable_optional.sh +++ b/tests/results/test_without_family/01_9choice_variable_optional.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/02_0tags.adoc b/tests/results/test_without_family/02_0tags.adoc index 56942d346..f5dab68e9 100644 --- a/tests/results/test_without_family/02_0tags.adoc +++ b/tests/results/test_without_family/02_0tags.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test_without_family/02_0tags.changelog.adoc b/tests/results/test_without_family/02_0tags.changelog.adoc index 7762e368f..63b9db6c1 100644 --- a/tests/results/test_without_family/02_0tags.changelog.adoc +++ b/tests/results/test_without_family/02_0tags.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. + **Tag**: one_tag -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. + **Tags**: * one_tag diff --git a/tests/results/test_without_family/02_0tags.changelog.sh b/tests/results/test_without_family/02_0tags.changelog.sh index 8c0edfc14..b60014e7a 100644 --- a/tests/results/test_without_family/02_0tags.changelog.sh +++ b/tests/results/test_without_family/02_0tags.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -11,7 +8,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/02_0tags.sh b/tests/results/test_without_family/02_0tags.sh index cf9749432..02648e83a 100644 --- a/tests/results/test_without_family/02_0tags.sh +++ b/tests/results/test_without_family/02_0tags.sh @@ -6,6 +6,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ The second variable. โ”‚ โ”‚  string   basic   mandatory  โ”‚ Tags: โ”‚ -โ”‚ โ”‚ - one_tag โ”‚ -โ”‚ โ”‚ - second_tag โ”‚ +โ”‚ โ”‚ โ€ข one_tag โ”‚ +โ”‚ โ”‚ โ€ข second_tag โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_0type_param.adoc b/tests/results/test_without_family/04_0type_param.adoc index 29f048432..4eee8b26f 100644 --- a/tests/results/test_without_family/04_0type_param.adoc +++ b/tests/results/test_without_family/04_0type_param.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_without_family/04_0type_param.changelog.adoc b/tests/results/test_without_family/04_0type_param.changelog.adoc index 3cbaabce5..7e587400b 100644 --- a/tests/results/test_without_family/04_0type_param.changelog.adoc +++ b/tests/results/test_without_family/04_0type_param.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited number. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited number. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_without_family/04_0type_param.changelog.sh b/tests/results/test_without_family/04_0type_param.changelog.sh index 7b61e9d73..6cb04d025 100644 --- a/tests/results/test_without_family/04_0type_param.changelog.sh +++ b/tests/results/test_without_family/04_0type_param.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_0type_param.sh b/tests/results/test_without_family/04_0type_param.sh index 371200d7c..2c1caa3a0 100644 --- a/tests/results/test_without_family/04_0type_param.sh +++ b/tests/results/test_without_family/04_0type_param.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited number. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_0type_param_integer.adoc b/tests/results/test_without_family/04_0type_param_integer.adoc index 02c657a24..291868a04 100644 --- a/tests/results/test_without_family/04_0type_param_integer.adoc +++ b/tests/results/test_without_family/04_0type_param_integer.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_without_family/04_0type_param_integer.changelog.adoc b/tests/results/test_without_family/04_0type_param_integer.changelog.adoc index 0361ff0de..3022cc9e6 100644 --- a/tests/results/test_without_family/04_0type_param_integer.changelog.adoc +++ b/tests/results/test_without_family/04_0type_param_integer.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A limited integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A limited integer. + **Validators**: * the minimum value is 0 diff --git a/tests/results/test_without_family/04_0type_param_integer.changelog.sh b/tests/results/test_without_family/04_0type_param_integer.changelog.sh index a24ed2e1a..70c3605a7 100644 --- a/tests/results/test_without_family/04_0type_param_integer.changelog.sh +++ b/tests/results/test_without_family/04_0type_param_integer.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_0type_param_integer.sh b/tests/results/test_without_family/04_0type_param_integer.sh index 35a8cc944..713f455f4 100644 --- a/tests/results/test_without_family/04_0type_param_integer.sh +++ b/tests/results/test_without_family/04_0type_param_integer.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ A limited integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 0 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 0 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 10 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_1auto_save.adoc b/tests/results/test_without_family/04_1auto_save.adoc index b4df1bd5a..fc79b2b59 100644 --- a/tests/results/test_without_family/04_1auto_save.adoc +++ b/tests/results/test_without_family/04_1auto_save.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/04_1auto_save.changelog.adoc b/tests/results/test_without_family/04_1auto_save.changelog.adoc index e1804665d..6551d12b9 100644 --- a/tests/results/test_without_family/04_1auto_save.changelog.adoc +++ b/tests/results/test_without_family/04_1auto_save.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -An auto save variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | An auto save variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/04_1auto_save.changelog.sh b/tests/results/test_without_family/04_1auto_save.changelog.sh index 9e150b96f..9d8add533 100644 --- a/tests/results/test_without_family/04_1auto_save.changelog.sh +++ b/tests/results/test_without_family/04_1auto_save.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated.adoc index 2a1d8dc10..632c98b37 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated.adoc +++ b/tests/results/test_without_family/04_1auto_save_and_calculated.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc index 50f50cd26..cc66cb2f0 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc +++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `auto modified` | A second variable. + **Default**: the value of the variable "var1" |==== diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh index 4af381b1c..279255310 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh +++ b/tests/results/test_without_family/04_1auto_save_and_calculated.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.adoc index f363e7f6e..f7824e4fe 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.adoc +++ b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc index 6d8033f2c..cb3e5e170 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc +++ b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__hidden__` `auto modified` | A second variable. + **Default**: the value is always yes + **Hidden**: only if the variable var1 has value "yes" |==== diff --git a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.sh b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.sh index 3077ff358..40c5e6521 100644 --- a/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.sh +++ b/tests/results/test_without_family/04_1auto_save_and_calculated_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.adoc b/tests/results/test_without_family/04_1default_calculation_hidden.adoc index ab6ff8875..733034e0c 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc index 633747547..1ab5071a2 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh index 2a3cb6d00..727cf82e6 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc index ab6ff8875..733034e0c 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc index 633747547..1ab5071a2 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A second variable. + **Disabled**: when the variable "var1" has the value "value" -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh index 2a3cb6d00..727cf82e6 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden_2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_3.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_3.adoc index bdabd8f44..cbf7a7b36 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_3.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.adoc index 97b05f06b..75c7f3f3a 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.sh index 1f1f8ea05..70d3b316b 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden_3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_4.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_4.adoc index d405e7ba1..ebc2a7b70 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_4.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_4.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.adoc index 0c720f6bd..e2563796d 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + -**Default**: depends on a calculation +| Variable | Description +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + +**Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.sh index 3c1d138b6..331ea19c1 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden_4.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_5.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_5.adoc index c28d4bb4a..0323556ba 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_5.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_5.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.adoc index c67602cac..76d465071 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.sh index b23c0d579..4335ac000 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden_5.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_6.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_6.adoc index c28d4bb4a..0323556ba 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_6.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_6.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.adoc b/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.adoc index c67602cac..76d465071 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.adoc +++ b/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: value -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A third variable. + **Disabled**: depends on an undocumented variable |==== diff --git a/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.sh b/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.sh index b23c0d579..4335ac000 100644 --- a/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.sh +++ b/tests/results/test_without_family/04_1default_calculation_hidden_6.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_boolean.adoc b/tests/results/test_without_family/04_5disabled_calculation_boolean.adoc index b1beda315..e3b95beba 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_boolean.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.adoc index a17121f26..fd893a9e1 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A conditional variable. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A conditional variable. + **Default**: no -| - -**variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A first variable. + +| **variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A first variable. + **Disabled**: if condition is egal to "yes" -| - -**variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A seconde variable. + +| **variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A seconde variable. + **Disabled**: if condition is not egal to "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.sh index b28fcaf0b..27f90ba5a 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional.adoc index b8b641021..4398364ac 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_optional.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.adoc index a7c7e5352..6c9ce8f19 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A first variable. + **Hidden**: calculation from an unknown variable -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + **Hidden**: calculation from an condition variable |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.sh index f04618adb..5ac6eba30 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc index 11fb68a45..b694cfedd 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.adoc @@ -1,28 +1,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" +| Variable | Description +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc index 9fad72b3e..de9b8835a 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.adoc @@ -2,29 +2,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + -**Default**: false -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A first variable. -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A second variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" -| - -**var4** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | -A forth variable. + -**Hidden**: when the variable "condition" is defined and has the value "true" +| Variable | Description +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + +**Default**: false +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A second variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" +| **var4** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` | A forth variable. + +**Hidden**: when the variable "condition" is defined and has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh index da7b2a62b..57320b761 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_optional_default.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable.adoc index 72147901f..b1c141c12 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc index 7356ceabd..bd29a602d 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh index 8fb8dc8ec..5870e29df 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc index 14fec330e..dd598ad52 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc index 17af55bfa..88da46a2f 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh index 7028b2fb2..b81d68f16 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable10.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc index 14fec330e..dd598ad52 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc index 17af55bfa..88da46a2f 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh index 7028b2fb2..b81d68f16 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc index e435e8ff1..1ff2fafc9 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc index 25431bd09..46220a0ae 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh index b104f2b1e..31adb208b 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable3.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc index ab9fc6c69..db9091fc7 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" hasn't the value "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc index 6da4ba55e..0aba8be34 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" hasn't the value "yes" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh index d56ec4c80..e65d8d101 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable4.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable5.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable5.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable5.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable5.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.adoc index 526ac7529..e3e448e4a 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.sh index c5a11e682..77478d6f0 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable5.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable6.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable6.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable6.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable6.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.adoc index 526ac7529..e3e448e4a 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.sh index c5a11e682..77478d6f0 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable6.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc index 72147901f..b1c141c12 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc index 7356ceabd..bd29a602d 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh index 8fb8dc8ec..5870e29df 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable7.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable9.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable9.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable9.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable9.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.adoc index 526ac7529..e3e448e4a 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.sh index c5a11e682..77478d6f0 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable9.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc index d98d62bfd..a3f11b78d 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc index 4a6c1ac15..279365645 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc +++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: false -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` | A variable. + **Disabled**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh index 2f4badadc..55d1902df 100644 --- a/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh +++ b/tests/results/test_without_family/04_5disabled_calculation_variable_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5validators.adoc b/tests/results/test_without_family/04_5validators.adoc index 0d8f01bd7..74eb3b274 100644 --- a/tests/results/test_without_family/04_5validators.adoc +++ b/tests/results/test_without_family/04_5validators.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test_without_family/04_5validators.changelog.adoc b/tests/results/test_without_family/04_5validators.changelog.adoc index 2bc4d6c8b..871dc49f0 100644 --- a/tests/results/test_without_family/04_5validators.changelog.adoc +++ b/tests/results/test_without_family/04_5validators.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | An integer. + **Validator**: the max value is 100 |==== diff --git a/tests/results/test_without_family/04_5validators.changelog.sh b/tests/results/test_without_family/04_5validators.changelog.sh index 66498aa1f..fc9493c3d 100644 --- a/tests/results/test_without_family/04_5validators.changelog.sh +++ b/tests/results/test_without_family/04_5validators.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5validators_differ.adoc b/tests/results/test_without_family/04_5validators_differ.adoc index 4f968ac3a..e0837f730 100644 --- a/tests/results/test_without_family/04_5validators_differ.adoc +++ b/tests/results/test_without_family/04_5validators_differ.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/04_5validators_differ.changelog.adoc b/tests/results/test_without_family/04_5validators_differ.changelog.adoc index 2560cdfc5..2d0fd5e8c 100644 --- a/tests/results/test_without_family/04_5validators_differ.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_differ.changelog.adoc @@ -3,19 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Validator**: var1 must be different than var2 + **Default**: oui + **Example**: another_value -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/04_5validators_differ.changelog.sh b/tests/results/test_without_family/04_5validators_differ.changelog.sh index f958a00f3..d82e2d110 100644 --- a/tests/results/test_without_family/04_5validators_differ.changelog.sh +++ b/tests/results/test_without_family/04_5validators_differ.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5validators_multi.adoc b/tests/results/test_without_family/04_5validators_multi.adoc index e3595443e..ad87ecdb9 100644 --- a/tests/results/test_without_family/04_5validators_multi.adoc +++ b/tests/results/test_without_family/04_5validators_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi.changelog.adoc b/tests/results/test_without_family/04_5validators_multi.changelog.adoc index 65f5108ce..5361ea25e 100644 --- a/tests/results/test_without_family/04_5validators_multi.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 10 + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi.changelog.sh b/tests/results/test_without_family/04_5validators_multi.changelog.sh index 0440036bd..7e4bf0930 100644 --- a/tests/results/test_without_family/04_5validators_multi.changelog.sh +++ b/tests/results/test_without_family/04_5validators_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,7 +7,7 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_multi.sh b/tests/results/test_without_family/04_5validators_multi.sh index b4dc9b3e5..a9b06e33a 100644 --- a/tests/results/test_without_family/04_5validators_multi.sh +++ b/tests/results/test_without_family/04_5validators_multi.sh @@ -5,6 +5,6 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 10 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_multi2.adoc b/tests/results/test_without_family/04_5validators_multi2.adoc index 508fb96da..251e760f8 100644 --- a/tests/results/test_without_family/04_5validators_multi2.adoc +++ b/tests/results/test_without_family/04_5validators_multi2.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi2.changelog.adoc b/tests/results/test_without_family/04_5validators_multi2.changelog.adoc index dc97c4a25..b2376b7d4 100644 --- a/tests/results/test_without_family/04_5validators_multi2.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_multi2.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: check length is less than 3 + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi2.changelog.sh b/tests/results/test_without_family/04_5validators_multi2.changelog.sh index 7f365cab6..71def4d34 100644 --- a/tests/results/test_without_family/04_5validators_multi2.changelog.sh +++ b/tests/results/test_without_family/04_5validators_multi2.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,10 +7,10 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_multi2.sh b/tests/results/test_without_family/04_5validators_multi2.sh index 0b8af4aac..6cc53ecdb 100644 --- a/tests/results/test_without_family/04_5validators_multi2.sh +++ b/tests/results/test_without_family/04_5validators_multi2.sh @@ -5,9 +5,9 @@ โ”‚  string   standard   mandatory    โ”‚ Validator: check length is less than โ”‚ โ”‚ unique   multiple  โ”‚ 3 โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - no โ”‚ -โ”‚ โ”‚ - yes โ”‚ +โ”‚ โ”‚ โ€ข no โ”‚ +โ”‚ โ”‚ โ€ข yes โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_multi3.adoc b/tests/results/test_without_family/04_5validators_multi3.adoc index e4b6003d5..908d36f77 100644 --- a/tests/results/test_without_family/04_5validators_multi3.adoc +++ b/tests/results/test_without_family/04_5validators_multi3.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi3.changelog.adoc b/tests/results/test_without_family/04_5validators_multi3.changelog.adoc index e5d857cb9..f8e57d771 100644 --- a/tests/results/test_without_family/04_5validators_multi3.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_multi3.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | -A second variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | A second variable. + **Validator**: value must be equal to index + **Default**: diff --git a/tests/results/test_without_family/04_5validators_multi3.changelog.sh b/tests/results/test_without_family/04_5validators_multi3.changelog.sh index ea53f506a..7320e30b7 100644 --- a/tests/results/test_without_family/04_5validators_multi3.changelog.sh +++ b/tests/results/test_without_family/04_5validators_multi3.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -10,9 +7,9 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_multi3.sh b/tests/results/test_without_family/04_5validators_multi3.sh index e2eab17ab..4e3eaab70 100644 --- a/tests/results/test_without_family/04_5validators_multi3.sh +++ b/tests/results/test_without_family/04_5validators_multi3.sh @@ -5,8 +5,8 @@ โ”‚  integer   standard   mandatory    โ”‚ Validator: value must be equal to โ”‚ โ”‚ unique   multiple  โ”‚ index โ”‚ โ”‚ โ”‚ Default: โ”‚ -โ”‚ โ”‚ - 0 โ”‚ -โ”‚ โ”‚ - 1 โ”‚ -โ”‚ โ”‚ - 2 โ”‚ +โ”‚ โ”‚ โ€ข 0 โ”‚ +โ”‚ โ”‚ โ€ข 1 โ”‚ +โ”‚ โ”‚ โ€ข 2 โ”‚ โ”‚ โ”‚ Example: 0 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_warnings.adoc b/tests/results/test_without_family/04_5validators_warnings.adoc index 3661c9a03..258316a31 100644 --- a/tests/results/test_without_family/04_5validators_warnings.adoc +++ b/tests/results/test_without_family/04_5validators_warnings.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test_without_family/04_5validators_warnings.changelog.adoc b/tests/results/test_without_family/04_5validators_warnings.changelog.adoc index 2511cdf76..f1a7bcb9c 100644 --- a/tests/results/test_without_family/04_5validators_warnings.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_warnings.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validator**: the max value is 100 + **Default**: 1000 |==== diff --git a/tests/results/test_without_family/04_5validators_warnings.changelog.sh b/tests/results/test_without_family/04_5validators_warnings.changelog.sh index 1cafb580b..9a75b60c4 100644 --- a/tests/results/test_without_family/04_5validators_warnings.changelog.sh +++ b/tests/results/test_without_family/04_5validators_warnings.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/04_5validators_warnings_all.adoc b/tests/results/test_without_family/04_5validators_warnings_all.adoc index b64d060c2..702c6ceea 100644 --- a/tests/results/test_without_family/04_5validators_warnings_all.adoc +++ b/tests/results/test_without_family/04_5validators_warnings_all.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test_without_family/04_5validators_warnings_all.changelog.adoc b/tests/results/test_without_family/04_5validators_warnings_all.changelog.adoc index c8217f1d7..42765cb9d 100644 --- a/tests/results/test_without_family/04_5validators_warnings_all.changelog.adoc +++ b/tests/results/test_without_family/04_5validators_warnings_all.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -An integer. + +| **int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | An integer. + **Validators**: * the minimum value is 10 diff --git a/tests/results/test_without_family/04_5validators_warnings_all.changelog.sh b/tests/results/test_without_family/04_5validators_warnings_all.changelog.sh index 1a1506efe..1ad8eaf8c 100644 --- a/tests/results/test_without_family/04_5validators_warnings_all.changelog.sh +++ b/tests/results/test_without_family/04_5validators_warnings_all.changelog.sh @@ -1,15 +1,12 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/04_5validators_warnings_all.sh b/tests/results/test_without_family/04_5validators_warnings_all.sh index 26d0e096c..390d1b5e2 100644 --- a/tests/results/test_without_family/04_5validators_warnings_all.sh +++ b/tests/results/test_without_family/04_5validators_warnings_all.sh @@ -3,7 +3,7 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ int โ”‚ An integer. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - the minimum value is 10 โ”‚ -โ”‚ โ”‚ - the maximum value is 100 โ”‚ +โ”‚ โ”‚ โ€ข the minimum value is 10 โ”‚ +โ”‚ โ”‚ โ€ข the maximum value is 100 โ”‚ โ”‚ โ”‚ Default: 1000 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/05_0multi_not_uniq.adoc b/tests/results/test_without_family/05_0multi_not_uniq.adoc index 4eb5e792b..31c859013 100644 --- a/tests/results/test_without_family/05_0multi_not_uniq.adoc +++ b/tests/results/test_without_family/05_0multi_not_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/05_0multi_not_uniq.changelog.adoc b/tests/results/test_without_family/05_0multi_not_uniq.changelog.adoc index 1944a8f40..37d844d8d 100644 --- a/tests/results/test_without_family/05_0multi_not_uniq.changelog.adoc +++ b/tests/results/test_without_family/05_0multi_not_uniq.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/05_0multi_not_uniq.changelog.sh b/tests/results/test_without_family/05_0multi_not_uniq.changelog.sh index 63a9f21e3..136542ed0 100644 --- a/tests/results/test_without_family/05_0multi_not_uniq.changelog.sh +++ b/tests/results/test_without_family/05_0multi_not_uniq.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/05_0multi_not_uniq.sh b/tests/results/test_without_family/05_0multi_not_uniq.sh index 45055b7c8..58d437b85 100644 --- a/tests/results/test_without_family/05_0multi_not_uniq.sh +++ b/tests/results/test_without_family/05_0multi_not_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - non โ”‚ +โ”‚ multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/05_0multi_uniq.adoc b/tests/results/test_without_family/05_0multi_uniq.adoc index 0f2961823..25a88d383 100644 --- a/tests/results/test_without_family/05_0multi_uniq.adoc +++ b/tests/results/test_without_family/05_0multi_uniq.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/05_0multi_uniq.changelog.adoc b/tests/results/test_without_family/05_0multi_uniq.changelog.adoc index 5c5e57f22..4c464b59a 100644 --- a/tests/results/test_without_family/05_0multi_uniq.changelog.adoc +++ b/tests/results/test_without_family/05_0multi_uniq.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/05_0multi_uniq.changelog.sh b/tests/results/test_without_family/05_0multi_uniq.changelog.sh index 7c0204044..ac811bf64 100644 --- a/tests/results/test_without_family/05_0multi_uniq.changelog.sh +++ b/tests/results/test_without_family/05_0multi_uniq.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/05_0multi_uniq.sh b/tests/results/test_without_family/05_0multi_uniq.sh index e8435e0db..58d6ea4da 100644 --- a/tests/results/test_without_family/05_0multi_uniq.sh +++ b/tests/results/test_without_family/05_0multi_uniq.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/12_1auto_save_expert.adoc b/tests/results/test_without_family/12_1auto_save_expert.adoc index 64d3f6474..c57e2b0f3 100644 --- a/tests/results/test_without_family/12_1auto_save_expert.adoc +++ b/tests/results/test_without_family/12_1auto_save_expert.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/12_1auto_save_expert.changelog.adoc b/tests/results/test_without_family/12_1auto_save_expert.changelog.adoc index f7cdca0c3..ce03a382d 100644 --- a/tests/results/test_without_family/12_1auto_save_expert.changelog.adoc +++ b/tests/results/test_without_family/12_1auto_save_expert.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `auto modified` | A variable. + **Default**: no |==== diff --git a/tests/results/test_without_family/12_1auto_save_expert.changelog.sh b/tests/results/test_without_family/12_1auto_save_expert.changelog.sh index 2269a0f7b..f1bcf4ebd 100644 --- a/tests/results/test_without_family/12_1auto_save_expert.changelog.sh +++ b/tests/results/test_without_family/12_1auto_save_expert.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_0redefine_description.adoc b/tests/results/test_without_family/16_0redefine_description.adoc index a27681f0a..7cd9f6cfc 100644 --- a/tests/results/test_without_family/16_0redefine_description.adoc +++ b/tests/results/test_without_family/16_0redefine_description.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test_without_family/16_0redefine_description.changelog.adoc b/tests/results/test_without_family/16_0redefine_description.changelog.adoc index 47127fef0..fdd72adb6 100644 --- a/tests/results/test_without_family/16_0redefine_description.changelog.adoc +++ b/tests/results/test_without_family/16_0redefine_description.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefined. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefined. |==== diff --git a/tests/results/test_without_family/16_0redefine_description.changelog.sh b/tests/results/test_without_family/16_0redefine_description.changelog.sh index 5ef7c6493..e9249165e 100644 --- a/tests/results/test_without_family/16_0redefine_description.changelog.sh +++ b/tests/results/test_without_family/16_0redefine_description.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_2family_redefine_calculation.adoc b/tests/results/test_without_family/16_2family_redefine_calculation.adoc index 843042754..658b40920 100644 --- a/tests/results/test_without_family/16_2family_redefine_calculation.adoc +++ b/tests/results/test_without_family/16_2family_redefine_calculation.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/16_2family_redefine_calculation.changelog.adoc b/tests/results/test_without_family/16_2family_redefine_calculation.changelog.adoc index fa7beaefc..2c25408a7 100644 --- a/tests/results/test_without_family/16_2family_redefine_calculation.changelog.adoc +++ b/tests/results/test_without_family/16_2family_redefine_calculation.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/16_2family_redefine_calculation.changelog.sh b/tests/results/test_without_family/16_2family_redefine_calculation.changelog.sh index e22e7b348..832f7083b 100644 --- a/tests/results/test_without_family/16_2family_redefine_calculation.changelog.sh +++ b/tests/results/test_without_family/16_2family_redefine_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_3family_empty_at_ends.adoc b/tests/results/test_without_family/16_3family_empty_at_ends.adoc index 843042754..658b40920 100644 --- a/tests/results/test_without_family/16_3family_empty_at_ends.adoc +++ b/tests/results/test_without_family/16_3family_empty_at_ends.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/16_3family_empty_at_ends.changelog.adoc b/tests/results/test_without_family/16_3family_empty_at_ends.changelog.adoc index fa7beaefc..2c25408a7 100644 --- a/tests/results/test_without_family/16_3family_empty_at_ends.changelog.adoc +++ b/tests/results/test_without_family/16_3family_empty_at_ends.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/16_3family_empty_at_ends.changelog.sh b/tests/results/test_without_family/16_3family_empty_at_ends.changelog.sh index e22e7b348..832f7083b 100644 --- a/tests/results/test_without_family/16_3family_empty_at_ends.changelog.sh +++ b/tests/results/test_without_family/16_3family_empty_at_ends.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5exists_nonexists.adoc b/tests/results/test_without_family/16_5exists_nonexists.adoc index 708e9a91f..0669595e8 100644 --- a/tests/results/test_without_family/16_5exists_nonexists.adoc +++ b/tests/results/test_without_family/16_5exists_nonexists.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/16_5exists_nonexists.changelog.adoc b/tests/results/test_without_family/16_5exists_nonexists.changelog.adoc index 806e244ab..fc79d61fe 100644 --- a/tests/results/test_without_family/16_5exists_nonexists.changelog.adoc +++ b/tests/results/test_without_family/16_5exists_nonexists.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A new variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A new variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/16_5exists_nonexists.changelog.sh b/tests/results/test_without_family/16_5exists_nonexists.changelog.sh index 0292c9daf..9aeafa0e1 100644 --- a/tests/results/test_without_family/16_5exists_nonexists.changelog.sh +++ b/tests/results/test_without_family/16_5exists_nonexists.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_calculation.adoc b/tests/results/test_without_family/16_5redefine_calculation.adoc index 320f5d64e..92eb58511 100644 --- a/tests/results/test_without_family/16_5redefine_calculation.adoc +++ b/tests/results/test_without_family/16_5redefine_calculation.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test_without_family/16_5redefine_calculation.changelog.adoc b/tests/results/test_without_family/16_5redefine_calculation.changelog.adoc index 696fcd2f7..9a33efbfd 100644 --- a/tests/results/test_without_family/16_5redefine_calculation.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_calculation.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: returns yes |==== diff --git a/tests/results/test_without_family/16_5redefine_calculation.changelog.sh b/tests/results/test_without_family/16_5redefine_calculation.changelog.sh index fc512759d..fbfce6674 100644 --- a/tests/results/test_without_family/16_5redefine_calculation.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_choice.adoc b/tests/results/test_without_family/16_5redefine_choice.adoc index 5ac6e725a..a11e7a410 100644 --- a/tests/results/test_without_family/16_5redefine_choice.adoc +++ b/tests/results/test_without_family/16_5redefine_choice.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_without_family/16_5redefine_choice.changelog.adoc b/tests/results/test_without_family/16_5redefine_choice.changelog.adoc index 2ab08972f..1937fae0e 100644 --- a/tests/results/test_without_family/16_5redefine_choice.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_choice.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + **Choices**: * a diff --git a/tests/results/test_without_family/16_5redefine_choice.changelog.sh b/tests/results/test_without_family/16_5redefine_choice.changelog.sh index eee1a0057..ab6e45a90 100644 --- a/tests/results/test_without_family/16_5redefine_choice.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_choice.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_5redefine_choice.sh b/tests/results/test_without_family/16_5redefine_choice.sh index e9264ed02..1e9157e33 100644 --- a/tests/results/test_without_family/16_5redefine_choice.sh +++ b/tests/results/test_without_family/16_5redefine_choice.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_5redefine_default.adoc b/tests/results/test_without_family/16_5redefine_default.adoc index b9c70ac19..a2a2dba9b 100644 --- a/tests/results/test_without_family/16_5redefine_default.adoc +++ b/tests/results/test_without_family/16_5redefine_default.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/16_5redefine_default.changelog.adoc b/tests/results/test_without_family/16_5redefine_default.changelog.adoc index a2d5060dd..cd50f21c1 100644 --- a/tests/results/test_without_family/16_5redefine_default.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_default.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/16_5redefine_default.changelog.sh b/tests/results/test_without_family/16_5redefine_default.changelog.sh index 60a4e49c9..73667aa11 100644 --- a/tests/results/test_without_family/16_5redefine_default.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_default.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_default_calculation.adoc b/tests/results/test_without_family/16_5redefine_default_calculation.adoc index 12f239021..5b3c2b494 100644 --- a/tests/results/test_without_family/16_5redefine_default_calculation.adoc +++ b/tests/results/test_without_family/16_5redefine_default_calculation.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_default_calculation.changelog.adoc b/tests/results/test_without_family/16_5redefine_default_calculation.changelog.adoc index 526ac7529..e3e448e4a 100644 --- a/tests/results/test_without_family/16_5redefine_default_calculation.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_default_calculation.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_default_calculation.changelog.sh b/tests/results/test_without_family/16_5redefine_default_calculation.changelog.sh index c5a11e682..77478d6f0 100644 --- a/tests/results/test_without_family/16_5redefine_default_calculation.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_family.adoc b/tests/results/test_without_family/16_5redefine_family.adoc index 821ec7c3f..3a54ab520 100644 --- a/tests/results/test_without_family/16_5redefine_family.adoc +++ b/tests/results/test_without_family/16_5redefine_family.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_family.changelog.adoc b/tests/results/test_without_family/16_5redefine_family.changelog.adoc index 5b3054e4d..3baf3d4e1 100644 --- a/tests/results/test_without_family/16_5redefine_family.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_family.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_family.changelog.sh b/tests/results/test_without_family/16_5redefine_family.changelog.sh index feaa86b65..7209b78a8 100644 --- a/tests/results/test_without_family/16_5redefine_family.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_family.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_help.adoc b/tests/results/test_without_family/16_5redefine_help.adoc index a2d93b9ff..7d8489976 100644 --- a/tests/results/test_without_family/16_5redefine_help.adoc +++ b/tests/results/test_without_family/16_5redefine_help.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test_without_family/16_5redefine_help.changelog.adoc b/tests/results/test_without_family/16_5redefine_help.changelog.adoc index c10745336..60a07c828 100644 --- a/tests/results/test_without_family/16_5redefine_help.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_help.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Redefine help. + +| **family.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Redefine help. + Redefine help ok. |==== diff --git a/tests/results/test_without_family/16_5redefine_help.changelog.sh b/tests/results/test_without_family/16_5redefine_help.changelog.sh index d535c55de..f2e69fd2a 100644 --- a/tests/results/test_without_family/16_5redefine_help.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_help.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5redefine_multi.adoc b/tests/results/test_without_family/16_5redefine_multi.adoc index 0f2961823..25a88d383 100644 --- a/tests/results/test_without_family/16_5redefine_multi.adoc +++ b/tests/results/test_without_family/16_5redefine_multi.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/16_5redefine_multi.changelog.adoc b/tests/results/test_without_family/16_5redefine_multi.changelog.adoc index 5c5e57f22..4c464b59a 100644 --- a/tests/results/test_without_family/16_5redefine_multi.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_multi.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A variable. + +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. + **Default**: * non diff --git a/tests/results/test_without_family/16_5redefine_multi.changelog.sh b/tests/results/test_without_family/16_5redefine_multi.changelog.sh index 7c0204044..ac811bf64 100644 --- a/tests/results/test_without_family/16_5redefine_multi.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_multi.changelog.sh @@ -1,13 +1,10 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_5redefine_multi.sh b/tests/results/test_without_family/16_5redefine_multi.sh index e8435e0db..58d6ea4da 100644 --- a/tests/results/test_without_family/16_5redefine_multi.sh +++ b/tests/results/test_without_family/16_5redefine_multi.sh @@ -3,5 +3,5 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ variable โ”‚ A variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - non โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข non โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.adoc b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.adoc index 58129fe8b..e4dbbdd2d 100644 --- a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.adoc +++ b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.adoc b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.adoc index 8b6498582..22b87a180 100644 --- a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.adoc +++ b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.sh b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.sh index 7952d642d..cf62f9faa 100644 --- a/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.sh +++ b/tests/results/test_without_family/16_5redefine_remove_disable_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_5test_redefine.adoc b/tests/results/test_without_family/16_5test_redefine.adoc index 890da4bf1..e63f4af3e 100644 --- a/tests/results/test_without_family/16_5test_redefine.adoc +++ b/tests/results/test_without_family/16_5test_redefine.adoc @@ -1,24 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test_without_family/16_5test_redefine.changelog.adoc b/tests/results/test_without_family/16_5test_redefine.changelog.adoc index d29f1e107..9d9241523 100644 --- a/tests/results/test_without_family/16_5test_redefine.changelog.adoc +++ b/tests/results/test_without_family/16_5test_redefine.changelog.adoc @@ -2,25 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no + -**Example**: test1 -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +**Example**: test1 +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: non + -**Example**: test1 -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A third variable. +**Example**: test1 +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A third variable. |==== diff --git a/tests/results/test_without_family/16_5test_redefine.changelog.sh b/tests/results/test_without_family/16_5test_redefine.changelog.sh index aed36a659..4ef05f4c8 100644 --- a/tests/results/test_without_family/16_5test_redefine.changelog.sh +++ b/tests/results/test_without_family/16_5test_redefine.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16_6choice_redefine.adoc b/tests/results/test_without_family/16_6choice_redefine.adoc index d44284dbb..c10ec9e43 100644 --- a/tests/results/test_without_family/16_6choice_redefine.adoc +++ b/tests/results/test_without_family/16_6choice_redefine.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test_without_family/16_6choice_redefine.changelog.adoc b/tests/results/test_without_family/16_6choice_redefine.changelog.adoc index 7dfc6ebbf..21794d340 100644 --- a/tests/results/test_without_family/16_6choice_redefine.changelog.adoc +++ b/tests/results/test_without_family/16_6choice_redefine.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | -A choice. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. + **Choices**: * a diff --git a/tests/results/test_without_family/16_6choice_redefine.changelog.sh b/tests/results/test_without_family/16_6choice_redefine.changelog.sh index 1f8d74188..4666de108 100644 --- a/tests/results/test_without_family/16_6choice_redefine.changelog.sh +++ b/tests/results/test_without_family/16_6choice_redefine.changelog.sh @@ -1,14 +1,11 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_6choice_redefine.sh b/tests/results/test_without_family/16_6choice_redefine.sh index 98fc9d474..d2cf80a4f 100644 --- a/tests/results/test_without_family/16_6choice_redefine.sh +++ b/tests/results/test_without_family/16_6choice_redefine.sh @@ -3,6 +3,6 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A choice. โ”‚ โ”‚  choice   standard   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - c โ† (default) โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข c โ† (default) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/16_6exists_redefine_family.adoc b/tests/results/test_without_family/16_6exists_redefine_family.adoc index 62d700965..57fea4814 100644 --- a/tests/results/test_without_family/16_6exists_redefine_family.adoc +++ b/tests/results/test_without_family/16_6exists_redefine_family.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_without_family/16_6exists_redefine_family.changelog.adoc b/tests/results/test_without_family/16_6exists_redefine_family.changelog.adoc index ac37e533e..8bd2961f0 100644 --- a/tests/results/test_without_family/16_6exists_redefine_family.changelog.adoc +++ b/tests/results/test_without_family/16_6exists_redefine_family.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family1.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family2.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **family1.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family2.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_without_family/16_6exists_redefine_family.changelog.sh b/tests/results/test_without_family/16_6exists_redefine_family.changelog.sh index 21b9e52e5..4ac065f2e 100644 --- a/tests/results/test_without_family/16_6exists_redefine_family.changelog.sh +++ b/tests/results/test_without_family/16_6exists_redefine_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/16exists_exists.adoc b/tests/results/test_without_family/16exists_exists.adoc index 5f5ec8ac7..730176e72 100644 --- a/tests/results/test_without_family/16exists_exists.adoc +++ b/tests/results/test_without_family/16exists_exists.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test_without_family/16exists_exists.changelog.adoc b/tests/results/test_without_family/16exists_exists.changelog.adoc index 6ed17f617..0fa039bb2 100644 --- a/tests/results/test_without_family/16exists_exists.changelog.adoc +++ b/tests/results/test_without_family/16exists_exists.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Description. +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Description. |==== diff --git a/tests/results/test_without_family/16exists_exists.changelog.sh b/tests/results/test_without_family/16exists_exists.changelog.sh index bc769d2e0..ec9661d86 100644 --- a/tests/results/test_without_family/16exists_exists.changelog.sh +++ b/tests/results/test_without_family/16exists_exists.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0family_append.adoc b/tests/results/test_without_family/20_0family_append.adoc index 96eb99d9b..56edffdab 100644 --- a/tests/results/test_without_family/20_0family_append.adoc +++ b/tests/results/test_without_family/20_0family_append.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test_without_family/20_0family_append.changelog.adoc b/tests/results/test_without_family/20_0family_append.changelog.adoc index dbb97818d..e72a1ac39 100644 --- a/tests/results/test_without_family/20_0family_append.changelog.adoc +++ b/tests/results/test_without_family/20_0family_append.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The second variable. +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. |==== diff --git a/tests/results/test_without_family/20_0family_append.changelog.sh b/tests/results/test_without_family/20_0family_append.changelog.sh index ae4018e03..2e24c045e 100644 --- a/tests/results/test_without_family/20_0family_append.changelog.sh +++ b/tests/results/test_without_family/20_0family_append.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0multi_family.adoc b/tests/results/test_without_family/20_0multi_family.adoc index 38332b0d8..f9e924a86 100644 --- a/tests/results/test_without_family/20_0multi_family.adoc +++ b/tests/results/test_without_family/20_0multi_family.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family.changelog.adoc b/tests/results/test_without_family/20_0multi_family.changelog.adoc index 3c3ecb3e9..19eaf6010 100644 --- a/tests/results/test_without_family/20_0multi_family.changelog.adoc +++ b/tests/results/test_without_family/20_0multi_family.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family.changelog.sh b/tests/results/test_without_family/20_0multi_family.changelog.sh index f3d9497c9..97a363110 100644 --- a/tests/results/test_without_family/20_0multi_family.changelog.sh +++ b/tests/results/test_without_family/20_0multi_family.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0multi_family_basic.adoc b/tests/results/test_without_family/20_0multi_family_basic.adoc index 10dc643ef..9bb4d9e38 100644 --- a/tests/results/test_without_family/20_0multi_family_basic.adoc +++ b/tests/results/test_without_family/20_0multi_family_basic.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_basic.changelog.adoc b/tests/results/test_without_family/20_0multi_family_basic.changelog.adoc index d48266eb2..725aac232 100644 --- a/tests/results/test_without_family/20_0multi_family_basic.changelog.adoc +++ b/tests/results/test_without_family/20_0multi_family_basic.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_basic.changelog.sh b/tests/results/test_without_family/20_0multi_family_basic.changelog.sh index a08b3ef3a..547a8c5af 100644 --- a/tests/results/test_without_family/20_0multi_family_basic.changelog.sh +++ b/tests/results/test_without_family/20_0multi_family_basic.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0multi_family_expert.adoc b/tests/results/test_without_family/20_0multi_family_expert.adoc index a202a6d02..56b8afd68 100644 --- a/tests/results/test_without_family/20_0multi_family_expert.adoc +++ b/tests/results/test_without_family/20_0multi_family_expert.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_expert.changelog.adoc b/tests/results/test_without_family/20_0multi_family_expert.changelog.adoc index 4e1fcdd5d..d8297242f 100644 --- a/tests/results/test_without_family/20_0multi_family_expert.changelog.adoc +++ b/tests/results/test_without_family/20_0multi_family_expert.changelog.adoc @@ -3,10 +3,7 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | -A variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` | A variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_expert.changelog.sh b/tests/results/test_without_family/20_0multi_family_expert.changelog.sh index c62e8f82b..f87e3b50f 100644 --- a/tests/results/test_without_family/20_0multi_family_expert.changelog.sh +++ b/tests/results/test_without_family/20_0multi_family_expert.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0multi_family_order.adoc b/tests/results/test_without_family/20_0multi_family_order.adoc index ae89d1e94..51720f288 100644 --- a/tests/results/test_without_family/20_0multi_family_order.adoc +++ b/tests/results/test_without_family/20_0multi_family_order.adoc @@ -1,25 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_order.changelog.adoc b/tests/results/test_without_family/20_0multi_family_order.changelog.adoc index 1eb9c05d9..3000309ea 100644 --- a/tests/results/test_without_family/20_0multi_family_order.changelog.adoc +++ b/tests/results/test_without_family/20_0multi_family_order.changelog.adoc @@ -2,26 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family.variable1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. -| - -**family.variable2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. +| Variable | Description +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family.variable1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. +| **family.variable2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. |==== diff --git a/tests/results/test_without_family/20_0multi_family_order.changelog.sh b/tests/results/test_without_family/20_0multi_family_order.changelog.sh index 818b7c5d2..0403546d1 100644 --- a/tests/results/test_without_family/20_0multi_family_order.changelog.sh +++ b/tests/results/test_without_family/20_0multi_family_order.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_0validators_differ_redefine.adoc b/tests/results/test_without_family/20_0validators_differ_redefine.adoc index 82a28f955..96129049b 100644 --- a/tests/results/test_without_family/20_0validators_differ_redefine.adoc +++ b/tests/results/test_without_family/20_0validators_differ_redefine.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test_without_family/20_0validators_differ_redefine.changelog.adoc b/tests/results/test_without_family/20_0validators_differ_redefine.changelog.adoc index 694de3531..016d28bbf 100644 --- a/tests/results/test_without_family/20_0validators_differ_redefine.changelog.adoc +++ b/tests/results/test_without_family/20_0validators_differ_redefine.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A first variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. + **Default**: no -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Validator**: var3 must be different than var2 + **Default**: yes + **Example**: yes diff --git a/tests/results/test_without_family/20_0validators_differ_redefine.changelog.sh b/tests/results/test_without_family/20_0validators_differ_redefine.changelog.sh index 715359e6d..c3f55c0a2 100644 --- a/tests/results/test_without_family/20_0validators_differ_redefine.changelog.sh +++ b/tests/results/test_without_family/20_0validators_differ_redefine.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_2family_looks_like_dynamic.adoc b/tests/results/test_without_family/20_2family_looks_like_dynamic.adoc index 5e1d6c4e6..98a5481b1 100644 --- a/tests/results/test_without_family/20_2family_looks_like_dynamic.adoc +++ b/tests/results/test_without_family/20_2family_looks_like_dynamic.adoc @@ -1,19 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.adoc b/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.adoc index 02fd8dcac..5cc9ed710 100644 --- a/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.adoc +++ b/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.adoc @@ -3,19 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**my_family.dynamic** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| **my_family.dynamic** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * val1 * val2 -| - -**my_family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A variable. + +| **my_family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A variable. + **Default**: true |==== diff --git a/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.sh b/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.sh index efc34499e..904aebded 100644 --- a/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.sh +++ b/tests/results/test_without_family/20_2family_looks_like_dynamic.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ diff --git a/tests/results/test_without_family/20_2family_looks_like_dynamic.sh b/tests/results/test_without_family/20_2family_looks_like_dynamic.sh index 101d2d570..ce3ae87ed 100644 --- a/tests/results/test_without_family/20_2family_looks_like_dynamic.sh +++ b/tests/results/test_without_family/20_2family_looks_like_dynamic.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ my_family.dynamic โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - val1 โ”‚ -โ”‚ unique   multiple  โ”‚ - val2 โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข val1 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ my_family.var โ”‚ A variable. โ”‚ โ”‚  boolean   standard   mandatory  โ”‚ Default: true โ”‚ diff --git a/tests/results/test_without_family/20_2family_looks_like_variable.adoc b/tests/results/test_without_family/20_2family_looks_like_variable.adoc index 6f10139bb..c2b1d09c3 100644 --- a/tests/results/test_without_family/20_2family_looks_like_variable.adoc +++ b/tests/results/test_without_family/20_2family_looks_like_variable.adoc @@ -1,10 +1,7 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test_without_family/20_2family_looks_like_variable.changelog.adoc b/tests/results/test_without_family/20_2family_looks_like_variable.changelog.adoc index 4598c3584..20fb231da 100644 --- a/tests/results/test_without_family/20_2family_looks_like_variable.changelog.adoc +++ b/tests/results/test_without_family/20_2family_looks_like_variable.changelog.adoc @@ -2,11 +2,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**my_family.default** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -**Default**: true +| Variable | Description +| **my_family.default** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | **Default**: true |==== diff --git a/tests/results/test_without_family/20_2family_looks_like_variable.changelog.sh b/tests/results/test_without_family/20_2family_looks_like_variable.changelog.sh index 5d12afac6..a8c5dc550 100644 --- a/tests/results/test_without_family/20_2family_looks_like_variable.changelog.sh +++ b/tests/results/test_without_family/20_2family_looks_like_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_9default_information_parent.adoc b/tests/results/test_without_family/20_9default_information_parent.adoc index e25fe2437..e13912f71 100644 --- a/tests/results/test_without_family/20_9default_information_parent.adoc +++ b/tests/results/test_without_family/20_9default_information_parent.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "family" +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "family" |==== diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.adoc b/tests/results/test_without_family/20_9default_information_parent.changelog.adoc index c32a35a63..80be415ec 100644 --- a/tests/results/test_without_family/20_9default_information_parent.changelog.adoc +++ b/tests/results/test_without_family/20_9default_information_parent.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A first variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of the information "test_information" of the variable "family" +| Variable | Description +| **family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of the information "test_information" of the variable "family" |==== diff --git a/tests/results/test_without_family/20_9default_information_parent.changelog.sh b/tests/results/test_without_family/20_9default_information_parent.changelog.sh index d892427db..046c3c753 100644 --- a/tests/results/test_without_family/20_9default_information_parent.changelog.sh +++ b/tests/results/test_without_family/20_9default_information_parent.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/20_9family_absolute.adoc b/tests/results/test_without_family/20_9family_absolute.adoc index a4979c817..e8343c5f3 100644 --- a/tests/results/test_without_family/20_9family_absolute.adoc +++ b/tests/results/test_without_family/20_9family_absolute.adoc @@ -1,47 +1,29 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -First variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. + -**Example**: string6 -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Third variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | First variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. + +**Example**: string6 +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Third variable. + **Default**: * the value of the variable "var1" -* the value of the variable "family.var2" -| - -**family2.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable2. + -**Default**: the value of the variable "family.var2" -| - -**family2.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: string4 + -**Example**: string5 -| - -**family2.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Fourth variable. + +* the value of the variable "family.var2" +| **family2.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. + +**Default**: the value of the variable "family.var2" +| **family2.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 + +**Example**: string5 +| **family2.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Fourth variable. + **Default**: * the value of the variable "var1" * the value of the variable "family.var2" -* the value of the variable "family2.var3" +* the value of the variable "family2.var3" |==== diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.adoc b/tests/results/test_without_family/20_9family_absolute.changelog.adoc index ba0fb9fca..e96da662d 100644 --- a/tests/results/test_without_family/20_9family_absolute.changelog.adoc +++ b/tests/results/test_without_family/20_9family_absolute.changelog.adoc @@ -2,48 +2,30 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -First variable. -| - -**family.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A second variable. + -**Example**: string6 -| - -**family.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Third variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | First variable. +| **family.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A second variable. + +**Example**: string6 +| **family.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Third variable. + **Default**: * the value of the variable "var1" -* the value of the variable "family.var2" -| - -**family2.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable2. + -**Default**: the value of the variable "family.var2" -| - -**family2.var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -**Default**: string4 + -**Example**: string5 -| - -**family2.subfamily.variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Fourth variable. + +* the value of the variable "family.var2" +| **family2.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. + +**Default**: the value of the variable "family.var2" +| **family2.var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: string4 + +**Example**: string5 +| **family2.subfamily.variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Fourth variable. + **Default**: * the value of the variable "var1" * the value of the variable "family.var2" -* the value of the variable "family2.var3" +* the value of the variable "family2.var3" |==== diff --git a/tests/results/test_without_family/20_9family_absolute.changelog.sh b/tests/results/test_without_family/20_9family_absolute.changelog.sh index 681527558..3472c07fc 100644 --- a/tests/results/test_without_family/20_9family_absolute.changelog.sh +++ b/tests/results/test_without_family/20_9family_absolute.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -14,8 +11,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family.subfamily.variable โ”‚ Third variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family2.var2 โ”‚ A variable2. โ”‚ @@ -27,10 +24,10 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family2.subfamily.variable โ”‚ Fourth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family2.var3" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/20_9family_absolute.sh b/tests/results/test_without_family/20_9family_absolute.sh index edbe24044..07580fc1c 100644 --- a/tests/results/test_without_family/20_9family_absolute.sh +++ b/tests/results/test_without_family/20_9family_absolute.sh @@ -9,8 +9,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family.subfamily.variable โ”‚ Third variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family2.var2 โ”‚ A variable2. โ”‚ @@ -22,9 +22,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ family2.subfamily.variable โ”‚ Fourth variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var1" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var1" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family.var2" โ”‚ -โ”‚ โ”‚ - the value of the variable โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "family2.var3" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.adoc b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.adoc index ac0bc2fae..53884e3ad 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.adoc +++ b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.adoc b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.adoc index ac48f333e..009bae75e 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.adoc +++ b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.sh b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.sh index e8f594dda..b468ff2f3 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.sh +++ b/tests/results/test_without_family/24_0family_hidden_condition_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.adoc b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.adoc index f48a355e4..b7a98fef3 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.adoc +++ b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc index a18194bbe..1e01f2954 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc +++ b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The variable use has condition. + **Default**: true -| - -**family.subfamily.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. +| **family.subfamily.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh index ccca6609f..4f13c9920 100644 --- a/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh +++ b/tests/results/test_without_family/24_0family_hidden_condition_variable_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.adoc b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.adoc index 9d762b21e..4f90be262 100644 --- a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.adoc +++ b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc index 6486617d5..5cfdc8e9c 100644 --- a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc +++ b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -The variable use has condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The variable use has condition. + **Default**: no -| - -**family.sub_family.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. +| **family.sub_family.var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. |==== diff --git a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh index 61d8ca2f8..ac87abc37 100644 --- a/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh +++ b/tests/results/test_without_family/24_0family_hidden_param_condition_sub_family.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/24_0family_mandatory_condition.adoc b/tests/results/test_without_family/24_0family_mandatory_condition.adoc index bb53ef4e4..898254dae 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition.adoc +++ b/tests/results/test_without_family/24_0family_mandatory_condition.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test_without_family/24_0family_mandatory_condition.changelog.adoc b/tests/results/test_without_family/24_0family_mandatory_condition.changelog.adoc index ef100afd4..a85176478 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition.changelog.adoc +++ b/tests/results/test_without_family/24_0family_mandatory_condition.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: only if rougail.condition has the value "yes" |==== diff --git a/tests/results/test_without_family/24_0family_mandatory_condition.changelog.sh b/tests/results/test_without_family/24_0family_mandatory_condition.changelog.sh index f6b7f57a8..c36e71483 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition.changelog.sh +++ b/tests/results/test_without_family/24_0family_mandatory_condition.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc b/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc index 15d55a1fb..268c84a48 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc +++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc index ab2b481e1..bf4289631 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc +++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A condition. + **Default**: true -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__mandatory__` | A variable. + **Mandatory**: when the variable "condition" has the value "true" |==== diff --git a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh index a832651d6..0de3b75e0 100644 --- a/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh +++ b/tests/results/test_without_family/24_0family_mandatory_condition_variable.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/24_7validators_variable_optional.adoc b/tests/results/test_without_family/24_7validators_variable_optional.adoc index 2d6713fdb..468d5dda7 100644 --- a/tests/results/test_without_family/24_7validators_variable_optional.adoc +++ b/tests/results/test_without_family/24_7validators_variable_optional.adoc @@ -1,22 +1,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test_without_family/24_7validators_variable_optional.changelog.adoc b/tests/results/test_without_family/24_7validators_variable_optional.changelog.adoc index 5a0235ce8..c7191cfb9 100644 --- a/tests/results/test_without_family/24_7validators_variable_optional.changelog.adoc +++ b/tests/results/test_without_family/24_7validators_variable_optional.changelog.adoc @@ -3,22 +3,16 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**general.int** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | -A first integer. + +| **general.int** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` | A first integer. + **Validators**: * int and int2 must be different * int and int3 must be different **Example**: 5 -| - -**general.int2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A second integer. + +| **general.int2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A second integer. + **Default**: 1 |==== diff --git a/tests/results/test_without_family/24_7validators_variable_optional.changelog.sh b/tests/results/test_without_family/24_7validators_variable_optional.changelog.sh index fac073382..30b7a9a63 100644 --- a/tests/results/test_without_family/24_7validators_variable_optional.changelog.sh +++ b/tests/results/test_without_family/24_7validators_variable_optional.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test_without_family/24_7validators_variable_optional.sh b/tests/results/test_without_family/24_7validators_variable_optional.sh index 945a8e452..9b251f8b5 100644 --- a/tests/results/test_without_family/24_7validators_variable_optional.sh +++ b/tests/results/test_without_family/24_7validators_variable_optional.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ general.int โ”‚ A first integer. โ”‚ โ”‚  integer   basic   mandatory  โ”‚ Validators: โ”‚ -โ”‚ โ”‚ - int and int2 must be different โ”‚ -โ”‚ โ”‚ - int and int3 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int2 must be different โ”‚ +โ”‚ โ”‚ โ€ข int and int3 must be different โ”‚ โ”‚ โ”‚ Example: 5 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ general.int2 โ”‚ A second integer. โ”‚ diff --git a/tests/results/test_without_family/40_0leadership.adoc b/tests/results/test_without_family/40_0leadership.adoc index 0bf85cc5e..e23cf0d16 100644 --- a/tests/results/test_without_family/40_0leadership.adoc +++ b/tests/results/test_without_family/40_0leadership.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_without_family/40_0leadership.changelog.adoc b/tests/results/test_without_family/40_0leadership.changelog.adoc index 1ab7c030d..495e75142 100644 --- a/tests/results/test_without_family/40_0leadership.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership.changelog.adoc @@ -2,21 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_without_family/40_0leadership.changelog.sh b/tests/results/test_without_family/40_0leadership.changelog.sh index b4c5f62d1..27fbb3224 100644 --- a/tests/results/test_without_family/40_0leadership.changelog.sh +++ b/tests/results/test_without_family/40_0leadership.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_0leadership_diff_name.adoc b/tests/results/test_without_family/40_0leadership_diff_name.adoc index bd25136c0..c841a84cd 100644 --- a/tests/results/test_without_family/40_0leadership_diff_name.adoc +++ b/tests/results/test_without_family/40_0leadership_diff_name.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_without_family/40_0leadership_diff_name.changelog.adoc b/tests/results/test_without_family/40_0leadership_diff_name.changelog.adoc index d2188afdc..4015e3353 100644 --- a/tests/results/test_without_family/40_0leadership_diff_name.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_diff_name.changelog.adoc @@ -2,21 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -An other follower. +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | An other follower. |==== diff --git a/tests/results/test_without_family/40_0leadership_diff_name.changelog.sh b/tests/results/test_without_family/40_0leadership_diff_name.changelog.sh index a53e3e2e3..b175b6206 100644 --- a/tests/results/test_without_family/40_0leadership_diff_name.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_diff_name.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_0leadership_follower_default_calculation.adoc b/tests/results/test_without_family/40_0leadership_follower_default_calculation.adoc index d09bc6892..af8367f5f 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_calculation.adoc +++ b/tests/results/test_without_family/40_0leadership_follower_default_calculation.adoc @@ -1,22 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.adoc b/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.adoc index ddbe889a2..6112c5d9b 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.adoc @@ -3,22 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: value -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second follower. + **Default**: returns follower1 value |==== diff --git a/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.sh b/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.sh index 40cd1d8a5..d4984e797 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_follower_default_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_0leadership_follower_default_value.adoc b/tests/results/test_without_family/40_0leadership_follower_default_value.adoc index 4cd56a2d2..d81eac573 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_value.adoc +++ b/tests/results/test_without_family/40_0leadership_follower_default_value.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.adoc b/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.adoc index 32a20ae84..621c53c1f 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower with default value. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower with default value. + **Default**: value |==== diff --git a/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.sh b/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.sh index 88fbcfcb8..118d0a232 100644 --- a/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_follower_default_value.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.adoc b/tests/results/test_without_family/40_0leadership_leader_follower.adoc index c67408920..04bfb10e3 100644 --- a/tests/results/test_without_family/40_0leadership_leader_follower.adoc +++ b/tests/results/test_without_family/40_0leadership_leader_follower.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "leadership.leader" |==== diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc index 380e5ac60..de54482f0 100644 --- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: the value of the variable "leadership.leader" |==== diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh index 6393d2b60..e1bd0d940 100644 --- a/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_leader_follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/40_0leadership_leader_follower.sh b/tests/results/test_without_family/40_0leadership_leader_follower.sh index 40d630484..1777f17ab 100644 --- a/tests/results/test_without_family/40_0leadership_leader_follower.sh +++ b/tests/results/test_without_family/40_0leadership_leader_follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/40_0leadership_leader_not_multi.adoc b/tests/results/test_without_family/40_0leadership_leader_not_multi.adoc index 0feb20324..6b6baa0b1 100644 --- a/tests/results/test_without_family/40_0leadership_leader_not_multi.adoc +++ b/tests/results/test_without_family/40_0leadership_leader_not_multi.adoc @@ -1,26 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non -| - -**general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.adoc b/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.adoc index 9bee9d236..40fe25070 100644 --- a/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.adoc @@ -3,26 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**general.mode_conteneur_actif** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -No change. + +| **general.mode_conteneur_actif** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | No change. + **Default**: non -| - -**general1.leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -Leader. -| - -**general1.leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower1. -| - -**general1.leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -Follower2. +| **general1.leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | Leader. +| **general1.leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower1. +| **general1.leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | Follower2. |==== diff --git a/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.sh b/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.sh index 222d7a2b9..2165d4613 100644 --- a/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_leader_not_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_0leadership_reduce.adoc b/tests/results/test_without_family/40_0leadership_reduce.adoc index 8dd6d1707..63f92eab4 100644 --- a/tests/results/test_without_family/40_0leadership_reduce.adoc +++ b/tests/results/test_without_family/40_0leadership_reduce.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -16,10 +13,7 @@ A leader. + * val1 * val2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/40_0leadership_reduce.changelog.adoc b/tests/results/test_without_family/40_0leadership_reduce.changelog.adoc index c9837471d..4a0670e9b 100644 --- a/tests/results/test_without_family/40_0leadership_reduce.changelog.adoc +++ b/tests/results/test_without_family/40_0leadership_reduce.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value_1 @@ -18,10 +15,7 @@ A leader. + * val1 * val2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/40_0leadership_reduce.changelog.sh b/tests/results/test_without_family/40_0leadership_reduce.changelog.sh index 7c24150b9..390428067 100644 --- a/tests/results/test_without_family/40_0leadership_reduce.changelog.sh +++ b/tests/results/test_without_family/40_0leadership_reduce.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_0leadership_reduce.sh b/tests/results/test_without_family/40_0leadership_reduce.sh index b49fc4b5f..0fb6b69a2 100644 --- a/tests/results/test_without_family/40_0leadership_reduce.sh +++ b/tests/results/test_without_family/40_0leadership_reduce.sh @@ -3,12 +3,12 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value_1 โ”‚ -โ”‚ โ”‚ - value_2 โ”‚ -โ”‚ โ”‚ - value_3 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value_1 โ”‚ +โ”‚ โ”‚ โ€ข value_2 โ”‚ +โ”‚ โ”‚ โ€ข value_3 โ”‚ โ”‚ โ”‚ Examples: โ”‚ -โ”‚ โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_1leadership_append_follower.adoc b/tests/results/test_without_family/40_1leadership_append_follower.adoc index 1b2fc1941..3c1de6470 100644 --- a/tests/results/test_without_family/40_1leadership_append_follower.adoc +++ b/tests/results/test_without_family/40_1leadership_append_follower.adoc @@ -1,25 +1,13 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test_without_family/40_1leadership_append_follower.changelog.adoc b/tests/results/test_without_family/40_1leadership_append_follower.changelog.adoc index af9380e21..7416185f0 100644 --- a/tests/results/test_without_family/40_1leadership_append_follower.changelog.adoc +++ b/tests/results/test_without_family/40_1leadership_append_follower.changelog.adoc @@ -2,26 +2,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower2. -| - -**leader.follower3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -The follower3. +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower2. +| **leader.follower3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The follower3. |==== diff --git a/tests/results/test_without_family/40_1leadership_append_follower.changelog.sh b/tests/results/test_without_family/40_1leadership_append_follower.changelog.sh index 23b5e6fd8..ebd189b15 100644 --- a/tests/results/test_without_family/40_1leadership_append_follower.changelog.sh +++ b/tests/results/test_without_family/40_1leadership_append_follower.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_2leadership_calculation_index.adoc b/tests/results/test_without_family/40_2leadership_calculation_index.adoc index 7dd20e2b4..39d8d947c 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index.adoc +++ b/tests/results/test_without_family/40_2leadership_calculation_index.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_without_family/40_2leadership_calculation_index.changelog.adoc b/tests/results/test_without_family/40_2leadership_calculation_index.changelog.adoc index b6209f6c6..e5c1d5a25 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index.changelog.adoc +++ b/tests/results/test_without_family/40_2leadership_calculation_index.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_without_family/40_2leadership_calculation_index.changelog.sh b/tests/results/test_without_family/40_2leadership_calculation_index.changelog.sh index cfca35a1b..9908f13b7 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index.changelog.sh +++ b/tests/results/test_without_family/40_2leadership_calculation_index.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_without_family/40_2leadership_calculation_index.sh b/tests/results/test_without_family/40_2leadership_calculation_index.sh index 3ce982b4f..ca945bc0e 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index.sh +++ b/tests/results/test_without_family/40_2leadership_calculation_index.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_without_family/40_2leadership_calculation_index_2.adoc b/tests/results/test_without_family/40_2leadership_calculation_index_2.adoc index 7dd20e2b4..39d8d947c 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index_2.adoc +++ b/tests/results/test_without_family/40_2leadership_calculation_index_2.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.adoc b/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.adoc index b6209f6c6..e5c1d5a25 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.adoc +++ b/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * a * b * c -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | A follower. + **Default**: the value of the index |==== diff --git a/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.sh b/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.sh index cfca35a1b..9908f13b7 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.sh +++ b/tests/results/test_without_family/40_2leadership_calculation_index_2.changelog.sh @@ -1,16 +1,13 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_without_family/40_2leadership_calculation_index_2.sh b/tests/results/test_without_family/40_2leadership_calculation_index_2.sh index 3ce982b4f..ca945bc0e 100644 --- a/tests/results/test_without_family/40_2leadership_calculation_index_2.sh +++ b/tests/results/test_without_family/40_2leadership_calculation_index_2.sh @@ -3,9 +3,9 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  integer   standard   mandatory  โ”‚ Default: the value of the index โ”‚ diff --git a/tests/results/test_without_family/40_6leadership_follower_multi.adoc b/tests/results/test_without_family/40_6leadership_follower_multi.adoc index 6440b9ccb..d9f4e3cef 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi.adoc +++ b/tests/results/test_without_family/40_6leadership_follower_multi.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/40_6leadership_follower_multi.changelog.adoc b/tests/results/test_without_family/40_6leadership_follower_multi.changelog.adoc index 9eac8e538..fec0c8bf6 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi.changelog.adoc +++ b/tests/results/test_without_family/40_6leadership_follower_multi.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/40_6leadership_follower_multi.changelog.sh b/tests/results/test_without_family/40_6leadership_follower_multi.changelog.sh index 4432a3152..4a56c6e25 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi.changelog.sh +++ b/tests/results/test_without_family/40_6leadership_follower_multi.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -16,6 +13,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_6leadership_follower_multi.sh b/tests/results/test_without_family/40_6leadership_follower_multi.sh index a2fff522e..82b525a25 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi.sh +++ b/tests/results/test_without_family/40_6leadership_follower_multi.sh @@ -11,5 +11,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.adoc b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.adoc index 24d7adf3d..ce6dd2bd8 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.adoc +++ b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc index 96e725bf7..53eb92f7b 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc +++ b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | -The first follower. -| - -**leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -The second follower. + +| Variable | Description +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `multiple` | The first follower. +| **leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | The second follower. + **Default**: -* value +* value |==== diff --git a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh index f30ba222c..c31b86dac 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh +++ b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -16,6 +13,6 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.sh index e8e54bf54..d875c01da 100644 --- a/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.sh +++ b/tests/results/test_without_family/40_6leadership_follower_multi_no_mandatory.sh @@ -11,5 +11,5 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower2 โ”‚ The second follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - value โ”‚ +โ”‚ multiple  โ”‚ โ€ข value โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_8calculation_boolean.adoc b/tests/results/test_without_family/40_8calculation_boolean.adoc index 5fedf1965..1bea89631 100644 --- a/tests/results/test_without_family/40_8calculation_boolean.adoc +++ b/tests/results/test_without_family/40_8calculation_boolean.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test_without_family/40_8calculation_boolean.changelog.adoc b/tests/results/test_without_family/40_8calculation_boolean.changelog.adoc index b962c8f39..f59e27920 100644 --- a/tests/results/test_without_family/40_8calculation_boolean.changelog.adoc +++ b/tests/results/test_without_family/40_8calculation_boolean.changelog.adoc @@ -3,23 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**bool** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | -A boolean variable. + +| **bool** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | A boolean variable. + **Default**: false -| - -**multi1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A first multi variable. + +| **multi1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A first multi variable. + **Default**: a calculation -| - -**multi2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | -A second multi variable. + +| **multi2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | A second multi variable. + **Default**: a calculation |==== diff --git a/tests/results/test_without_family/40_8calculation_boolean.changelog.sh b/tests/results/test_without_family/40_8calculation_boolean.changelog.sh index 20803eeed..b445603fc 100644 --- a/tests/results/test_without_family/40_8calculation_boolean.changelog.sh +++ b/tests/results/test_without_family/40_8calculation_boolean.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.adoc b/tests/results/test_without_family/40_8calculation_multi_variable.adoc index 7bc57d69a..ad15df94b 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "var2" * the value of the variable "var3" -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc index 15d4f2ba0..07ed45826 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.adoc @@ -3,26 +3,17 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A first variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. + **Default**: * the value of the variable "var2" * the value of the variable "var3" -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: no -| - -**var3** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A third variable. + +| **var3** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + **Default**: yes |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh index 00a1b6c21..1daa9a95b 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh +++ b/tests/results/test_without_family/40_8calculation_multi_variable.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var2" โ”‚ -โ”‚ โ”‚ - the value of the variable "var3" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var2" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable "var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ diff --git a/tests/results/test_without_family/40_8calculation_multi_variable.sh b/tests/results/test_without_family/40_8calculation_multi_variable.sh index 629d816b1..be935dc73 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable.sh +++ b/tests/results/test_without_family/40_8calculation_multi_variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A first variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - the value of the variable "var2" โ”‚ -โ”‚ โ”‚ - the value of the variable "var3" โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข the value of the variable "var2" โ”‚ +โ”‚ โ”‚ โ€ข the value of the variable "var3" โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ var2 โ”‚ A second variable. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: no โ”‚ diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc index b4c740057..3a4ebb9e0 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "var" |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc index f799eccfe..1404f36d8 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: the value of the variable "var" |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh index d8d81556f..974334333 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc index 9b5694259..6810c2217 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "fam1.var" |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc index 6a365fe64..20010b168 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.adoc @@ -3,17 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**fam1.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam1.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: no -| - -**fam2.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **fam2.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "fam1.var" |==== diff --git a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh index 30d227107..84af05a5c 100644 --- a/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh +++ b/tests/results/test_without_family/40_8calculation_multi_variable_parent2.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc index 0e4ef79a3..132a49691 100644 --- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc +++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "leadership.leader" diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc index df9ab5ba4..005e26190 100644 --- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc +++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: * the value of the variable "leadership.leader" diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh index 7118ed084..7c7aaf61b 100644 --- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh +++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.changelog.sh @@ -1,19 +1,16 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh index 6e5af47bb..85896bc5e 100644 --- a/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh +++ b/tests/results/test_without_family/40_9calculation_variable_leader_follower_multi_inside.sh @@ -3,11 +3,11 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ multiple  โ”‚ - the value of the variable โ”‚ +โ”‚ multiple  โ”‚ โ€ข the value of the variable โ”‚ โ”‚ โ”‚ "leadership.leader" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.adoc index c171bcbb6..b3f64694e 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc index b7dab0675..ad0df15c0 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh index 2f6bd1d88..74f12ac85 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.sh index 8cd1ec7f8..939d599cf 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-first.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.adoc index c171bcbb6..b3f64694e 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc index b7dab0675..ad0df15c0 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh index 2f6bd1d88..74f12ac85 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.sh index 8cd1ec7f8..939d599cf 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-last.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc index 3486b8fa5..bb9c9dba4 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.adoc @@ -1,23 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a -* b -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "leader.follower" +* b +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "leader.follower" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc index 21a5363fa..553b48474 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.adoc @@ -2,24 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -**Default**: +| Variable | Description +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: * a -* b -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | - -| - -**variable** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -**Default**: the value of the variable "leader.follower" +* b +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | +| **variable** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | **Default**: the value of the variable "leader.follower" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh index 5b3196ec5..a8c174b44 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.changelog.sh @@ -1,14 +1,11 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh index 365943184..5ad030a66 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -2,8 +2,8 @@ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ Default: โ”‚ -โ”‚  string   standard   mandatory    โ”‚ - a โ”‚ -โ”‚ unique   multiple  โ”‚ - b โ”‚ +โ”‚  string   standard   mandatory    โ”‚ โ€ข a โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower โ”‚ โ”‚ โ”‚  string   standard  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc index eea402158..8366c867c 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.follower1" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc index 02072ee54..ede471f46 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.follower1" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh index 4ead4556f..ee499e12b 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh index d28aeef1e..a3b9795a2 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.adoc index a5991fda6..49818436b 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc index 880f13785..523bd2071 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh index f44a78f74..0efa280bb 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.sh index e12890549..534866904 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-first.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.adoc index a5991fda6..49818436b 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc index 880f13785..523bd2071 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A calculated variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh index f44a78f74..0efa280bb 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.sh index e12890549..534866904 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader-last.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc index 4b58e5017..d0cc4441f 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.leader" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc index c58478a72..82b5744bd 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: the value of the variable "leader.leader" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh index 229361c07..3ce61f62a 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh index 857e9ce13..05b1d6566 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-outside-leader.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory  โ”‚ Default: val11 โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable.adoc index b4f363703..52bebf172 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 * value2 -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "calculate" -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc index 65adf747a..11f21c128 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**calculate** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A calculated variable. + +| **calculate** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A calculated variable. + **Default**: * value1 * value2 -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "calculate" -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val11 -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -An other follower. + +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | An other follower. + **Default**: val21 |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh index ce3460751..4a9b46dba 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable.sh b/tests/results/test_without_family/40_9leadership-calculation-variable.sh index 9b81d7f75..f20453ab8 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ calculate โ”‚ A calculated variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc index e5299f9ad..17c848015 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.adoc @@ -1,31 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "leadership_1.follower" -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc index 51a94efda..ec60ce0b1 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.adoc @@ -3,31 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: the value of the variable "leadership_1.follower" -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A follower. + **Default**: val |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh index 912f25735..0e9a45e48 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh index a5b027fb8..416ae76fe 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc index 6a3a37b24..29c49eb98 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.adoc @@ -1,34 +1,22 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "leadership_1.leader" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc index 648a40449..a7c8b7e72 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.adoc @@ -3,34 +3,22 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership_1.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_1.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. -| - -**leadership_2.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A leader. + +| **leadership_1.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. +| **leadership_2.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A leader. + **Default**: * value1 * value2 -| - -**leadership_2.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | -A follower. + +| **leadership_2.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` | A follower. + **Default**: the value of the variable "leadership_1.leader" |==== diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh index 236729a3a..9401422b2 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.changelog.sh @@ -1,23 +1,20 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh index 385c6c36b..74b642959 100644 --- a/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_without_family/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -3,16 +3,16 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership_1.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_1.follower โ”‚ A follower. โ”‚ โ”‚  string   basic   mandatory  โ”‚ โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_2.leader โ”‚ A leader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - value1 โ”‚ -โ”‚ โ”‚ - value2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข value1 โ”‚ +โ”‚ โ”‚ โ€ข value2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership_2.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: the value of the variable โ”‚ diff --git a/tests/results/test_without_family/41_0choice_leader.adoc b/tests/results/test_without_family/41_0choice_leader.adoc index 07a017383..e95ec1b1f 100644 --- a/tests/results/test_without_family/41_0choice_leader.adoc +++ b/tests/results/test_without_family/41_0choice_leader.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test_without_family/41_0choice_leader.changelog.adoc b/tests/results/test_without_family/41_0choice_leader.changelog.adoc index 59d5e3c2e..f6c852511 100644 --- a/tests/results/test_without_family/41_0choice_leader.changelog.adoc +++ b/tests/results/test_without_family/41_0choice_leader.changelog.adoc @@ -3,16 +3,10 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -The leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | The leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A follower. + **Choices**: * a diff --git a/tests/results/test_without_family/41_0choice_leader.changelog.sh b/tests/results/test_without_family/41_0choice_leader.changelog.sh index e6f8e2b04..2426fda58 100644 --- a/tests/results/test_without_family/41_0choice_leader.changelog.sh +++ b/tests/results/test_without_family/41_0choice_leader.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,8 +9,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/41_0choice_leader.sh b/tests/results/test_without_family/41_0choice_leader.sh index 42beea485..e69f3373a 100644 --- a/tests/results/test_without_family/41_0choice_leader.sh +++ b/tests/results/test_without_family/41_0choice_leader.sh @@ -7,7 +7,7 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leader.follower1 โ”‚ A follower. โ”‚ โ”‚  choice   basic   mandatory  โ”‚ Choices: โ”‚ -โ”‚ โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ -โ”‚ โ”‚ - c โ”‚ +โ”‚ โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ +โ”‚ โ”‚ โ€ข c โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.adoc b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.adoc index fa70551ec..a6c43bd7d 100644 --- a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.adoc +++ b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.adoc b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.adoc index df5e635c8..42636d5c4 100644 --- a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.adoc +++ b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -Aleader. + +| **leadership.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | Aleader. + **Default**: * a * b -| - -**leadership.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | -A follower. + +| **leadership.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `__disabled__` | A follower. + **Default**: value + **Disabled**: depends on a calculation |==== diff --git a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.sh b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.sh index 32fa667c6..9e065fc8b 100644 --- a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.sh +++ b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.sh b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.sh index bffd0da68..cd825b543 100644 --- a/tests/results/test_without_family/44_4disabled_calcultion_follower_index.sh +++ b/tests/results/test_without_family/44_4disabled_calcultion_follower_index.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ leadership.leader โ”‚ Aleader. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - a โ”‚ -โ”‚ โ”‚ - b โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข a โ”‚ +โ”‚ โ”‚ โ€ข b โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ leadership.follower โ”‚ A follower. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: value โ”‚ diff --git a/tests/results/test_without_family/44_4leadership_mandatory.adoc b/tests/results/test_without_family/44_4leadership_mandatory.adoc index 9d46a49c1..ca80dbfb8 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory.adoc +++ b/tests/results/test_without_family/44_4leadership_mandatory.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test_without_family/44_4leadership_mandatory.changelog.adoc b/tests/results/test_without_family/44_4leadership_mandatory.changelog.adoc index be5764b9f..be89b5aca 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory.changelog.adoc +++ b/tests/results/test_without_family/44_4leadership_mandatory.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower. |==== diff --git a/tests/results/test_without_family/44_4leadership_mandatory.changelog.sh b/tests/results/test_without_family/44_4leadership_mandatory.changelog.sh index fef0ecee6..315857b35 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory.changelog.sh +++ b/tests/results/test_without_family/44_4leadership_mandatory.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/44_4leadership_mandatory_follower.adoc b/tests/results/test_without_family/44_4leadership_mandatory_follower.adoc index 9e49a18c0..44b79b55e 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory_follower.adoc +++ b/tests/results/test_without_family/44_4leadership_mandatory_follower.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.adoc b/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.adoc index ee9372b43..df851f217 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.adoc +++ b/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.adoc @@ -3,15 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.sh b/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.sh index 2773b6093..4a9085ed1 100644 --- a/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.sh +++ b/tests/results/test_without_family/44_4leadership_mandatory_follower.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.adoc b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.adoc index 8f8c0ba6e..ada011162 100644 --- a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.adoc +++ b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.adoc @@ -1,21 +1,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc index d016c171a..83c0ad962 100644 --- a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc +++ b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.adoc @@ -3,21 +3,12 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: no -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower. |==== diff --git a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.sh b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.sh index 29aaed3f1..714689168 100644 --- a/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.sh +++ b/tests/results/test_without_family/44_5leadership_leader_hidden_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.adoc b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.adoc index 6d4b9eb62..5c1c66be5 100644 --- a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.adoc +++ b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.adoc @@ -1,22 +1,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc index dc4fb3fcc..fb73ee774 100644 --- a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc +++ b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.adoc @@ -3,22 +3,13 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**condition** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A condition. + +| **condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A condition. + **Default**: yes -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**leader.follower** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A follower. + +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **leader.follower** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A follower. + **Disabled**: if condition is yes |==== diff --git a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.sh b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.sh index d04698ea0..f4359b20a 100644 --- a/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.sh +++ b/tests/results/test_without_family/44_6leadership_follower_disabled_calculation.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic.adoc b/tests/results/test_without_family/60_0family_dynamic.adoc index 8d496758c..93d188d94 100644 --- a/tests/results/test_without_family/60_0family_dynamic.adoc +++ b/tests/results/test_without_family/60_0family_dynamic.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic.changelog.adoc index 6c1bd141e..3eb593347 100644 --- a/tests/results/test_without_family/60_0family_dynamic.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic.changelog.sh b/tests/results/test_without_family/60_0family_dynamic.changelog.sh index 0d89c6e76..7f114f613 100644 --- a/tests/results/test_without_family/60_0family_dynamic.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic.sh b/tests/results/test_without_family/60_0family_dynamic.sh index 0cb42b28d..79b0d1022 100644 --- a/tests/results/test_without_family/60_0family_dynamic.sh +++ b/tests/results/test_without_family/60_0family_dynamic.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1.adoc b/tests/results/test_without_family/60_0family_dynamic_1_1.adoc index 3ad14ff8c..14b9b0a34 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_1_1.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.vardyn** + +* val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.adoc index 9e100bb8b..26f0bafa3 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.vardyn** + +* val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.sh index eab659cbe..13b096261 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_1_1.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1.sh b/tests/results/test_without_family/60_0family_dynamic_1_1.sh index 5b5bb0010..83a9b3614 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1.sh +++ b/tests/results/test_without_family/60_0family_dynamic_1_1.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.adoc b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.adoc index 9a6c07046..06c93a480 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.vardyn** + +* val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.adoc index eabfcc5aa..283528446 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.vardyn** + +* val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.sh index 42ca77116..bcdd951fd 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.sh b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.sh index 2a15c6030..6775cd881 100644 --- a/tests/results/test_without_family/60_0family_dynamic_1_1_empty.sh +++ b/tests/results/test_without_family/60_0family_dynamic_1_1_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.vardyn โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.vardyn โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_empty.adoc b/tests/results/test_without_family/60_0family_dynamic_empty.adoc index b140b9355..6094b3904 100644 --- a/tests/results/test_without_family/60_0family_dynamic_empty.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_empty.adoc @@ -1,15 +1,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_empty.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_empty.changelog.adoc index ab97b689c..35cfdb5c7 100644 --- a/tests/results/test_without_family/60_0family_dynamic_empty.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_empty.changelog.adoc @@ -2,16 +2,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_empty.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_empty.changelog.sh index 1b43aea7d..1542d8b69 100644 --- a/tests/results/test_without_family/60_0family_dynamic_empty.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_empty.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.adoc b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.adoc index 1f147f889..c8f79995a 100644 --- a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.adoc @@ -1,28 +1,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 * val.2 -| - -**dyn__val_1__.var1** + +| **dyn__val_1__.var1** + **dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**dyn__val_1__.var2** + +| **dyn__val_1__.var2** + **dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.adoc index d75372f1c..e9e98c219 100644 --- a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.adoc @@ -3,28 +3,19 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val.1 * val.2 -| - -**dyn__val_1__.var1** + +| **dyn__val_1__.var1** + **dyn__val_2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**dyn__val_1__.var2** + +| **dyn__val_1__.var2** + **dyn__val_2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: depends on a calculation |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.sh index a3086847e..5310e9606 100644 --- a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval_1.var1 โ”‚ A dynamic variable. โ”‚ โ”‚ dynval_2.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.sh b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.sh index 220f36630..04636b3f3 100644 --- a/tests/results/test_without_family/60_0family_dynamic_forbidden_char.sh +++ b/tests/results/test_without_family/60_0family_dynamic_forbidden_char.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val.1 โ”‚ -โ”‚ โ”‚ - val.2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val.1 โ”‚ +โ”‚ โ”‚ โ€ข val.2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval_1.var1 โ”‚ A dynamic variable. โ”‚ โ”‚ dynval_2.var1 โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description.adoc b/tests/results/test_without_family/60_0family_dynamic_no_description.adoc index afd104157..20ecc7a1d 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_no_description.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.adoc index 2c6939689..22e480489 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.sh index cd540abd8..819608167 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_no_description.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description.sh b/tests/results/test_without_family/60_0family_dynamic_no_description.sh index f7bb97beb..d4b0d014d 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description.sh +++ b/tests/results/test_without_family/60_0family_dynamic_no_description.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.adoc b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.adoc index 373f892ed..597de146a 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.adoc index 10db0a5c2..3f182071d 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.adoc @@ -3,20 +3,14 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | - +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.sh index c4595a705..cb11c5d73 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.sh b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.sh index a4c985ede..a90cb5580 100644 --- a/tests/results/test_without_family/60_0family_dynamic_no_description_empty.sh +++ b/tests/results/test_without_family/60_0family_dynamic_no_description_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_source_hidden.adoc b/tests/results/test_without_family/60_0family_dynamic_source_hidden.adoc index 7fb8e2894..767483549 100644 --- a/tests/results/test_without_family/60_0family_dynamic_source_hidden.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_source_hidden.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.adoc index c55884b7a..bea4cec7a 100644 --- a/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.adoc @@ -2,12 +2,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.sh index 53dc98a58..757220f71 100644 --- a/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_source_hidden.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic_static.adoc b/tests/results/test_without_family/60_0family_dynamic_static.adoc index 1b113069a..bc9257ee5 100644 --- a/tests/results/test_without_family/60_0family_dynamic_static.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_static.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_static.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_static.changelog.adoc index 10fca0d37..7c7e3d775 100644 --- a/tests/results/test_without_family/60_0family_dynamic_static.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_static.changelog.adoc @@ -2,12 +2,9 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable inside a dynamic family. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable inside a dynamic family. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_static.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_static.changelog.sh index 650e07b51..b343d3dcf 100644 --- a/tests/results/test_without_family/60_0family_dynamic_static.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_static.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic_test.adoc b/tests/results/test_without_family/60_0family_dynamic_test.adoc index cfaf8ec81..762bbba49 100644 --- a/tests/results/test_without_family/60_0family_dynamic_test.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_test.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_test.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_test.changelog.adoc index 863c87223..4a05ecd99 100644 --- a/tests/results/test_without_family/60_0family_dynamic_test.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_test.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_test.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_test.changelog.sh index c3a9d3d93..0829784ab 100644 --- a/tests/results/test_without_family/60_0family_dynamic_test.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_test.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_test.sh b/tests/results/test_without_family/60_0family_dynamic_test.sh index 3dc09d7c4..0a7de9c27 100644 --- a/tests/results/test_without_family/60_0family_dynamic_test.sh +++ b/tests/results/test_without_family/60_0family_dynamic_test.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_upper_char.adoc b/tests/results/test_without_family/60_0family_dynamic_upper_char.adoc index 169f8fc4c..467dc40da 100644 --- a/tests/results/test_without_family/60_0family_dynamic_upper_char.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_upper_char.adoc @@ -1,20 +1,14 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 -* VAL2 -| - -**dyn__val1__.var** + +* VAL2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.adoc index dc8e4da30..93e1f1348 100644 --- a/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.adoc @@ -2,21 +2,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * Val1 -* VAL2 -| - -**dyn__val1__.var** + +* VAL2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.sh index 469ec2f5d..cc9d73402 100644 --- a/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_upper_char.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_upper_char.sh b/tests/results/test_without_family/60_0family_dynamic_upper_char.sh index ff994f670..ff0455a34 100644 --- a/tests/results/test_without_family/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_without_family/60_0family_dynamic_upper_char.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - Val1 โ”‚ -โ”‚ โ”‚ - VAL2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข Val1 โ”‚ +โ”‚ โ”‚ โ€ข VAL2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_empty.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_empty.adoc index e97125595..85a04af8c 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_empty.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_empty.adoc @@ -1,16 +1,10 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + -**Default**: val +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + +**Default**: val |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.adoc index e45bd824d..67df9b793 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.adoc @@ -2,17 +2,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. -| - -**dyn__example__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + -**Default**: val +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. +| **dyn__example__.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + +**Default**: val |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.sh index 7f648a2ec..cccbbb439 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_empty.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_optional.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_optional.adoc index 921f72990..1b6c2a169 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_optional.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_optional.adoc @@ -1,12 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__a__.var** + +| **dyn__a__.var** + **dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.adoc index 08b7e5ab2..25b096153 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.adoc @@ -3,12 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__a__.var** + +| **dyn__a__.var** + **dyn__b__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: val |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.sh index 2b6b4fab7..2476f2fef 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_optional.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.adoc index d0db7d4d0..c1333c164 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.adoc index 920de0cee..0dea3509d 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.sh index 33cebb128..a3f166643 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.sh b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.sh index 59340be8a..ec511f1f8 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.adoc index 7d802fc7b..6ae799288 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc index c3b282c46..2e116622b 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable with suffix __val1__ or __val2__. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable with suffix __val1__ or __val2__. + **Default**: a value |==== diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh index 8d92f66e0..1f5f12a8a 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.sh index d442b626d..916b80783 100644 --- a/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_without_family/60_0family_dynamic_variable_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   basic   mandatory   unique  โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable with suffix val1 โ”‚ โ”‚ dynval2.var โ”‚ or val2. โ”‚ diff --git a/tests/results/test_without_family/60_0family_mode.adoc b/tests/results/test_without_family/60_0family_mode.adoc index 227c16a16..06ad5c35c 100644 --- a/tests/results/test_without_family/60_0family_mode.adoc +++ b/tests/results/test_without_family/60_0family_mode.adoc @@ -1,11 +1,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_without_family/60_0family_mode.changelog.adoc b/tests/results/test_without_family/60_0family_mode.changelog.adoc index 0d5b5351c..98a709134 100644 --- a/tests/results/test_without_family/60_0family_mode.changelog.adoc +++ b/tests/results/test_without_family/60_0family_mode.changelog.adoc @@ -3,11 +3,8 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A variable. + +| **family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable. + **Default**: non |==== diff --git a/tests/results/test_without_family/60_0family_mode.changelog.sh b/tests/results/test_without_family/60_0family_mode.changelog.sh index 2d47ac618..6e8fafa67 100644 --- a/tests/results/test_without_family/60_0family_mode.changelog.sh +++ b/tests/results/test_without_family/60_0family_mode.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_1family_dynamic_jinja.adoc b/tests/results/test_without_family/60_1family_dynamic_jinja.adoc index 70f6c4bb7..632c3683c 100644 --- a/tests/results/test_without_family/60_1family_dynamic_jinja.adoc +++ b/tests/results/test_without_family/60_1family_dynamic_jinja.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__1__.var** + +| **dyn__1__.var** + **dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.adoc b/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.adoc index 08a56bf1d..2ae110e7e 100644 --- a/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.adoc +++ b/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__1__.var** + +| **dyn__1__.var** + **dyn__2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val |==== diff --git a/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.sh b/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.sh index ace50abfd..374120d7d 100644 --- a/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.sh +++ b/tests/results/test_without_family/60_1family_dynamic_jinja.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_1family_dynamic_jinja.sh b/tests/results/test_without_family/60_1family_dynamic_jinja.sh index 27bdafdce..f5c295de3 100644 --- a/tests/results/test_without_family/60_1family_dynamic_jinja.sh +++ b/tests/results/test_without_family/60_1family_dynamic_jinja.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dyn2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc index 98a846238..84af4eca0 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.family.var** + +* val2 +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc index f275cabbf..317faaed2 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.family.var** + +* val2 +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh index c8495a439..2db421107 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh index 4d42f020a..44dea8adc 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc index 3ee40b0d2..a767fc449 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc index 641c2e09f..891636a82 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh index a59d1af43..9ff0682ec 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh index 326a885ce..780a6bc75 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc index 94eb9d449..b409a8b57 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc index 451239fdc..3512bf5f8 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.family.var** + +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A varible outside dynamic family. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A varible outside dynamic family. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh index 77c17032c..c90768070 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 0f348d87a..73c8bcf04 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.family.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc index 13bb619ee..41ae711e2 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.family.var** + +* val2 +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc index 57ed5cb61..1a52c929f 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.family.var** + +* val2 +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -With a variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + -**Default**: the value of var +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | With a variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + +**Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh index 99b3527d0..38d3a357d 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh index 822105c1a..097d2af2a 100644 --- a/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_without_family/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.family.var โ”‚ With a variable. โ”‚ โ”‚ dynval2.family.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc.adoc b/tests/results/test_without_family/60_2family_dynamic_outside_calc.adoc index a5d4c6cb6..2e6ff4967 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.adoc index 99faa39be..6e6f29104 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffx variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.sh index db49853ba..1bb9fc4e9 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc.sh b/tests/results/test_without_family/60_2family_dynamic_outside_calc.sh index f2b588b2a..e7c3c9674 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc.sh +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.adoc b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.adoc index 63c6ebe10..6a9d988bc 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc index 3b9c5a1d4..dca6cae66 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffx variable. + +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffx variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: val -| - -**newvar** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A second variable. + +| **newvar** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A second variable. + **Default**: the value of var |==== diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh index c98464871..26eac0783 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.sh index fb8db687f..1ac786444 100644 --- a/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_without_family/60_2family_dynamic_outside_calc_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffx variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: val โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.adoc index efd5114ba..aa5ee2f01 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc index 6e71ed0e5..f3064d054 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.sh index 81621da5e..ed0160489 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.sh index 36524a1e8..adf97ef65 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.adoc index e4a780d29..7fbe6b6f3 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc index 812283c33..9c445612b 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -Suffix has value. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | Suffix has value. + **Default**: the value of the identifier |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh index e6d07fcd8..488b88700 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.sh index 171cd5953..0a6a4149b 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix2_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ Suffix has value. โ”‚ โ”‚ dynval2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.adoc index 18e1997e7..d71e0f7a3 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.adoc @@ -1,12 +1,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc index fb6d7dcf8..8a189d6a6 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.adoc @@ -3,12 +3,9 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A dynamic variable. + **Disabled**: when the identifier is "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh index 30f4786c1..9bbc6dcfd 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_disabled.changelog.sh @@ -1,8 +1,5 @@ - - New variable - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.adoc index f80adf530..5bb03d0ab 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc index 8e88ceec2..f72d11f49 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A identifier variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh index a567b9732..69c562bf4 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.sh index a60cd3df3..cf8e63505 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc index 16493ba56..7bd570731 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc index c4a418d44..e1941dbf4 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.adoc @@ -3,21 +3,15 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A identifier variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A identifier variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.var** + +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A dynamic variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A dynamic variable. + **Default**: from suffix |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh index 6b07481ed..a2596c972 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.sh index c116509af..a4ef7075d 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_suffix_param_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A identifier variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ Default: from suffix โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc index 3f14abd1a..e00e576a1 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "dynval1.var" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc index 3575496c8..244f13c42 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "dynval1.var" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "dynval1.var" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh index 8ea929897..9aa3ec35f 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh index 0d77178df..975039fe2 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc index 375ce5d46..ba3250dec 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.adoc @@ -1,21 +1,15 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **dyn__val1__.var2** + **dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "dyn__val1__.var1" has the value "val1" -* when the variable "dyn__val2__.var1" has the value "val1" +* when the variable "dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc index e96c990e9..c2aee1ece 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.adoc @@ -2,22 +2,16 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**dyn__val1__.var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **dyn__val1__.var2** + **dyn__val2__.var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + **Disabled**: * when the variable "dyn__val1__.var1" has the value "val1" -* when the variable "dyn__val2__.var1" has the value "val1" +* when the variable "dyn__val2__.var1" has the value "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh index a48f1af92..b92d33be4 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ @@ -12,9 +9,9 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable "dynval1.var1" โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable "dynval1.var1" โ”‚ โ”‚ disabled  โ”‚ has the value "val1" โ”‚ -โ”‚ โ”‚ - when the variable "dynval2.var1" โ”‚ +โ”‚ โ”‚ โ€ข when the variable "dynval2.var1" โ”‚ โ”‚ โ”‚ has the value "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh index 4aad16bd1..8c889c273 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled.sh @@ -7,8 +7,8 @@ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var2 โ”‚ A new variable. โ”‚ โ”‚ dynval2.var2 โ”‚ Disabled: โ”‚ -โ”‚  string   basic   mandatory    โ”‚ - when the variable "dynval1.var1" โ”‚ +โ”‚  string   basic   mandatory    โ”‚ โ€ข when the variable "dynval1.var1" โ”‚ โ”‚ disabled  โ”‚ has the value "val1" โ”‚ -โ”‚ โ”‚ - when the variable "dynval2.var1" โ”‚ +โ”‚ โ”‚ โ€ข when the variable "dynval2.var1" โ”‚ โ”‚ โ”‚ has the value "val1" โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc index 7459412e1..6afdc0126 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + -**Disabled**: when the variable "dyn__val1__.var1" has the value "val1" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + +**Disabled**: when the variable "dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc index dd020f444..be90348d1 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var1** + +| Variable | Description +| **dyn__val1__.var1** + **dyn__val2__.var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | -A new variable. + -**Disabled**: when the variable "dyn__val1__.var1" has the value "val1" +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` | A new variable. + +**Disabled**: when the variable "dyn__val1__.var1" has the value "val1" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh index e95a87b73..ead52a7e2 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_disabled_outside.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc index acbfc62ab..c0a6362ec 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.adoc @@ -1,26 +1,17 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "dynval1.var" if it is defined |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc index 46543c508..17fef3f68 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.adoc @@ -2,27 +2,18 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| Variable | Description +| **var1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 -* val2 -| - -**dyn__val1__.var** + +* val2 +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable calculated. + -**Default**: the value of the variable "dynval1.var" if it is defined +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable calculated. + +**Default**: the value of the variable "dynval1.var" if it is defined |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh index 532eb0200..019c09b92 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh index 1851eb6de..0af5af062 100644 --- a/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_without_family/60_5family_dynamic_calc_variable_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var1 โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.var โ”‚ A dynamic variable. โ”‚ โ”‚ dynval2.var โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.adoc b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.adoc index de1984eef..27412cf1b 100644 --- a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. -| - -**dyn__val1__.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc index 45830bc5f..94fddddd4 100644 --- a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**dyn__val1__.var** + +| Variable | Description +| **dyn__val1__.var** + **dyn__val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. -| - -**dyn__val1__.family.var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. +| **dyn__val1__.family.var** + **dyn__val2__.family.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A new variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A new variable. |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.sh index cffa99682..e1930f36a 100644 --- a/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_hidden_suffix.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc index 513d4e4cc..5c0b8cf0a 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "dyn_val1.var" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc index 4eeb3de0f..26f5127f7 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. + **Default**: the value of the variable "dyn_val1.var" |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh index 7447f468a..af969e5cf 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh index 5c8378e9a..6ee02b041 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc index 47010d069..c526f8925 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.adoc @@ -1,27 +1,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 * val2 -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "dyn_val1.var" if it is defined |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc index b72d09fc8..1fc2f90ef 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.adoc @@ -3,27 +3,18 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -Asuffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | Asuffix variable. + **Examples**: * val1 * val2 -| - -**dyn___val1__.var** + +| **dyn___val1__.var** + **dyn___val2__.var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A variable inside dynamic family. + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable inside dynamic family. + **Default**: the value of the identifier -| - -**var2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A variable. + +| **var2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A variable. + **Default**: the value of the variable "dyn_val1.var" if it is defined |==== diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh index 2cbd3ca08..79c7d310a 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh index 073e4d45c..eacb7e5b5 100644 --- a/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_without_family/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ Asuffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dyn_val1.var โ”‚ A variable inside dynamic family. โ”‚ โ”‚ dyn_val2.var โ”‚ Default: the value of the identifier โ”‚ diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership.adoc b/tests/results/test_without_family/60_6family_dynamic_leadership.adoc index 5405181b7..6e2f9ee42 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership.adoc +++ b/tests/results/test_without_family/60_6family_dynamic_leadership.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.adoc b/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.adoc index a8f447dc1..831c7f5aa 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.adoc +++ b/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A suffix variable. + **Default**: * val1 * val2 -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.sh b/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.sh index f09d4e5a7..5deb2f3f5 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.sh +++ b/tests/results/test_without_family/60_6family_dynamic_leadership.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership.sh b/tests/results/test_without_family/60_6family_dynamic_leadership.sh index 68322a660..59da1600d 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership.sh +++ b/tests/results/test_without_family/60_6family_dynamic_leadership.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   mandatory    โ”‚ Default: โ”‚ -โ”‚ unique   multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ unique   multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.adoc b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.adoc index 535302674..2d80c8007 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.adoc +++ b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.adoc @@ -1,32 +1,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.adoc b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.adoc index e17ddcced..b9ff09017 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.adoc +++ b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.adoc @@ -3,32 +3,20 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | -A suffix variable. + +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` | A suffix variable. + **Examples**: * val1 * val2 -| - -**dyn__val1__.leadership.leader** + +| **dyn__val1__.leadership.leader** + **dyn__val2__.leadership.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | -A leader. -| - -**dyn__val1__.leadership.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | A leader. +| **dyn__val1__.leadership.follower1** + **dyn__val2__.leadership.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**dyn__val1__.leadership.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **dyn__val1__.leadership.follower2** + **dyn__val2__.leadership.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower2. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower2. |==== diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.sh b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.sh index bbc5e92a6..80b0efcce 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.sh +++ b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.changelog.sh @@ -1,15 +1,12 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.sh b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.sh index 81d1e59ec..46e17b4fb 100644 --- a/tests/results/test_without_family/60_6family_dynamic_leadership_empty.sh +++ b/tests/results/test_without_family/60_6family_dynamic_leadership_empty.sh @@ -3,8 +3,8 @@ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ โ”‚ var โ”‚ A suffix variable. โ”‚ โ”‚  string   standard   unique    โ”‚ Examples: โ”‚ -โ”‚ multiple  โ”‚ - val1 โ”‚ -โ”‚ โ”‚ - val2 โ”‚ +โ”‚ multiple  โ”‚ โ€ข val1 โ”‚ +โ”‚ โ”‚ โ€ข val2 โ”‚ โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚ dynval1.leadership.leader โ”‚ A leader. โ”‚ โ”‚ dynval2.leadership.leader โ”‚ โ”‚ diff --git a/tests/results/test_without_family/60_9family_dynamic_calc_both.adoc b/tests/results/test_without_family/60_9family_dynamic_calc_both.adoc index 4eef1bc93..41b4f9127 100644 --- a/tests/results/test_without_family/60_9family_dynamic_calc_both.adoc +++ b/tests/results/test_without_family/60_9family_dynamic_calc_both.adoc @@ -1,17 +1,11 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + -**Default**: val2 -| - -**dyn__val1__.vardyn** + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + +**Default**: val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.adoc b/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.adoc index 03522a6d0..5776074e7 100644 --- a/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.adoc +++ b/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.adoc @@ -2,18 +2,12 @@ [cols="1a,1a"] |==== -| Variable | Description -| - -**var** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | -A suffix variable. + -**Default**: val2 -| - -**dyn__val1__.vardyn** + +| Variable | Description +| **var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A suffix variable. + +**Default**: val2 +| **dyn__val1__.vardyn** + **dyn__val2__.vardyn** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A dynamic variable. +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A dynamic variable. |==== diff --git a/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.sh b/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.sh index f347b85fe..95c1f1610 100644 --- a/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.sh +++ b/tests/results/test_without_family/60_9family_dynamic_calc_both.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/results/test_without_family/68_0family_leadership_mode.adoc b/tests/results/test_without_family/68_0family_leadership_mode.adoc index a2ae59140..2bb4b1fab 100644 --- a/tests/results/test_without_family/68_0family_leadership_mode.adoc +++ b/tests/results/test_without_family/68_0family_leadership_mode.adoc @@ -1,20 +1,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test_without_family/68_0family_leadership_mode.changelog.adoc b/tests/results/test_without_family/68_0family_leadership_mode.changelog.adoc index fbe66415b..6f99f1961 100644 --- a/tests/results/test_without_family/68_0family_leadership_mode.changelog.adoc +++ b/tests/results/test_without_family/68_0family_leadership_mode.changelog.adoc @@ -3,20 +3,11 @@ [cols="1a,1a"] |==== | Variable | Description -| - -**leader.leader** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | -A leader. -| - -**leader.follower1** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | -A follower1. -| - -**leader.follower2** + -`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | -A follower2. +| **leader.leader** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `unique` `multiple` | A leader. +| **leader.follower1** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A follower1. +| **leader.follower2** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A follower2. |==== diff --git a/tests/results/test_without_family/68_0family_leadership_mode.changelog.sh b/tests/results/test_without_family/68_0family_leadership_mode.changelog.sh index bde519326..2fcf5522b 100644 --- a/tests/results/test_without_family/68_0family_leadership_mode.changelog.sh +++ b/tests/results/test_without_family/68_0family_leadership_mode.changelog.sh @@ -1,8 +1,5 @@ - - New variables - โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“ โ”ƒ Variable  โ”ƒ Description  โ”ƒ โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ diff --git a/tests/root_a_family.gitlab.md b/tests/root_a_family.gitlab.md index 23535155e..20d644ff1 100644 --- a/tests/root_a_family.gitlab.md +++ b/tests/root_a_family.gitlab.md @@ -1,7 +1,7 @@
A second family >>> [!note] Informations -
**a_family.a_second_family** +**a_family.a_second_family** >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------| @@ -12,7 +12,7 @@
An other family >>> [!note] Informations -
**a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" +**a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "[`A boolean variable`](#a_family.a_second_family.a_variable)" has the value "true" >>> | Variable | Description | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| diff --git a/tests/root_a_family.md b/tests/root_a_family.md index e14b548a9..00acf0aff 100644 --- a/tests/root_a_family.md +++ b/tests/root_a_family.md @@ -1,10 +1,7 @@ # A second family - - -| Informations | -|:------------| -| **a_family.a_second_family** | +> โ„น Informations +> **a_family.a_second_family** | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -12,11 +9,10 @@ # An other family - - -| Informations | -|:------------| -| **a_family.an_other_family**
*`hidden`*
**Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" | +> โ„น Informations +> **a_family.an_other_family** +> *`hidden`* +> **Hidden**: when the variable "a_family.a_second_family.a_variable" has the value "true" | Variable                                                                                         | Description                                                                                      | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Variable Description