diff --git a/src/rougail/output_doc/config.py b/src/rougail/output_doc/config.py index 79869af..7a64543 100644 --- a/src/rougail/output_doc/config.py +++ b/src/rougail/output_doc/config.py @@ -73,24 +73,27 @@ def get_rougail_config( doc: description: {_('Configuration rougail-doc')} disabled: - type: jinja jinja: | - {{% if step.output != 'doc' %}} + {{% if step.output is propertyerror or step.output != 'doc' %}} disabled {{% endif %}} + title_level: description: {_('Starting title level')} alternative_name: dt default: 1 + example: description: {_('Generate example')} negative_description: {_('Generate documentation')} alternative_name: de default: false + without_family: description: {_('Do not add families in documentation')} negative_description: {_('Add families in documentation')} default: false + disabled_modes: description: {_('Disable documentation for variables with those modes')} multi: true @@ -107,6 +110,7 @@ doc: this mode is not available {{% endif %}} description: {_('verify if disable modes already exists')} + output_format: description: {_('Generate document in format')} alternative_name: do diff --git a/src/rougail/output_doc/doc.py b/src/rougail/output_doc/doc.py index d08c54b..262796e 100644 --- a/src/rougail/output_doc/doc.py +++ b/src/rougail/output_doc/doc.py @@ -27,7 +27,7 @@ from rougail.object_model import PROPERTY_ATTRIBUTE from .config import OutPuts from .i18n import _ -from .utils import to_phrase, DocTypes, get_display_path +from .utils import DocTypes, get_display_path from .example import Examples @@ -246,10 +246,10 @@ class RougailOutputDoc(Examples): dynamic_variable["example"].append( self._get_example(variable, dynamic_variable, leader) ) - description = to_phrase(variable.description(uncalculated=True)) + description = self.formater.to_phrase(variable.description(uncalculated=True)) if "{{ identifier }}" in description: description = self._convert_description(description, variable) - dynamic_variable["descriptions"].append(to_phrase(description)) + dynamic_variable["descriptions"].append(self.formater.to_phrase(description)) if variable.isleader(): return dynamic_variable return None @@ -318,7 +318,7 @@ class RougailOutputDoc(Examples): ) self._populate(variable, informations) if "description" in informations: - informations["descriptions"] = [to_phrase(informations.pop("description"))] + informations["descriptions"] = [self.formater.to_phrase(informations.pop("description"))] if variable.ismulti(): multi = not variable.isfollower() or variable.issubmulti() else: @@ -357,7 +357,7 @@ class RougailOutputDoc(Examples): informations["description"] = self._convert_description(description, obj) help_ = obj.information.get("help", None) if help_: - informations["help"] = [to_phrase(help_)] + informations["help"] = [self.formater.to_phrase(help_)] self._parse_properties( obj, informations, @@ -567,10 +567,8 @@ class RougailOutputDoc(Examples): values = calculation["value"] else: if calculation.get("optional", False): - # FIXME pas forcement dans self.dynamic_paths encore ... path = calculation["value"] if "{{ identifier }}" in path: - # FIXME pas forcement dans self.dynamic_paths encore ... if path not in self.dynamic_paths: return None else: @@ -581,7 +579,6 @@ class RougailOutputDoc(Examples): true_msg = _('the value of the variable "{0}"') hidden_msg = _("the value of an undocumented variable") if "{{ identifier }}" in calculation["value"]: - # FIXME pas forcement dans self.dynamic_paths encore ... informations = self.dynamic_paths[calculation["value"]] values = [] all_is_undocumented = None diff --git a/src/rougail/output_doc/output/asciidoc.py b/src/rougail/output_doc/output/asciidoc.py index 6679efe..1d6a867 100644 --- a/src/rougail/output_doc/output/asciidoc.py +++ b/src/rougail/output_doc/output/asciidoc.py @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. """ from typing import List -from ..utils import CommonFormater, dump +from ..utils import CommonFormater, dump, to_phrase class Formater(CommonFormater): @@ -124,3 +124,6 @@ class Formater(CommonFormater): ) -> str: """verify if a text is a list""" return txt.strip().startswith("* ") + + def to_phrase(self, text: str) -> str: + return to_phrase(text) diff --git a/src/rougail/output_doc/output/github.py b/src/rougail/output_doc/output/github.py index 55d0903..b2ba25f 100644 --- a/src/rougail/output_doc/output/github.py +++ b/src/rougail/output_doc/output/github.py @@ -17,8 +17,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. """ from typing import List +from html import escape -from ..utils import dump, CommonFormater +from ..utils import dump, CommonFormater, to_phrase class Formater(CommonFormater): @@ -135,3 +136,6 @@ class Formater(CommonFormater): for line in col: for l in line.split(self.enter_table): self.max_line = max(self.max_line, len(l) + 1) + + def to_phrase(self, text: str) -> str: + return escape(to_phrase(text)) diff --git a/src/rougail/output_doc/output/ojson.py b/src/rougail/output_doc/output/ojson.py index 0a5b823..c1728af 100644 --- a/src/rougail/output_doc/output/ojson.py +++ b/src/rougail/output_doc/output/ojson.py @@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. from json import dumps from typing import Any +from ..utils import to_phrase class Formater: @@ -33,3 +34,6 @@ class Formater: def italic(self, msg: Any) -> str: """Just return a string""" return str(msg) + + def to_phrase(self, text: str) -> str: + return to_phrase(text) diff --git a/tests/results/test/00_0empty.md b/tests/results/test/00_0empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test/00_0empty.md +++ b/tests/results/test/00_0empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/00_0version_underscore.md b/tests/results/test/00_0version_underscore.md index 4e5e94b..7ad8868 100644 --- a/tests/results/test/00_0version_underscore.md +++ b/tests/results/test/00_0version_underscore.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **version**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/00_1empty_variable.md b/tests/results/test/00_1empty_variable.md index 6619fb0..c9b28bc 100644 --- a/tests/results/test/00_1empty_variable.md +++ b/tests/results/test/00_1empty_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **empty**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Empty. | diff --git a/tests/results/test/00_2default_calculated.md b/tests/results/test/00_2default_calculated.md index c3611cb..3bfa42f 100644 --- a/tests/results/test/00_2default_calculated.md +++ b/tests/results/test/00_2default_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no | diff --git a/tests/results/test/00_2default_calculated_multi.md b/tests/results/test/00_2default_calculated_multi.md index 86be442..bfbbebf 100644 --- a/tests/results/test/00_2default_calculated_multi.md +++ b/tests/results/test/00_2default_calculated_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- no<br/>- yes<br/>- maybe | diff --git a/tests/results/test/00_2default_calculated_variable_transitive.md b/tests/results/test/00_2default_calculated_variable_transitive.md index 0ef018e..fc5dc9b 100644 --- a/tests/results/test/00_2default_calculated_variable_transitive.md +++ b/tests/results/test/00_2default_calculated_variable_transitive.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Validator**: the domain name can be an IP | diff --git a/tests/results/test/00_4load_subfolder.md b/tests/results/test/00_4load_subfolder.md index d1d5544..8e394eb 100644 --- a/tests/results/test/00_4load_subfolder.md +++ b/tests/results/test/00_4load_subfolder.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/00_5load_notype.md b/tests/results/test/00_5load_notype.md index f0a330c..9d6acb2 100644 --- a/tests/results/test/00_5load_notype.md +++ b/tests/results/test/00_5load_notype.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **without_type**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: non | diff --git a/tests/results/test/00_6boolean.md b/tests/results/test/00_6boolean.md index 8c56095..e9ca378 100644 --- a/tests/results/test/00_6boolean.md +++ b/tests/results/test/00_6boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: true | diff --git a/tests/results/test/00_6boolean_no_mandatory.md b/tests/results/test/00_6boolean_no_mandatory.md index aef6236..d6cc7c9 100644 --- a/tests/results/test/00_6boolean_no_mandatory.md +++ b/tests/results/test/00_6boolean_no_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: true | diff --git a/tests/results/test/00_6choice.md b/tests/results/test/00_6choice.md index bf2bfb5..3f7b0b6 100644 --- a/tests/results/test/00_6choice.md +++ b/tests/results/test/00_6choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c | diff --git a/tests/results/test/00_6choice_calculation.md b/tests/results/test/00_6choice_calculation.md index bd74531..33660ca 100644 --- a/tests/results/test/00_6choice_calculation.md +++ b/tests/results/test/00_6choice_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: choices is 0 to 9.<br/>**Default**: 9 | diff --git a/tests/results/test/00_6choice_variable.md b/tests/results/test/00_6choice_variable.md index bab8675..0698fc8 100644 --- a/tests/results/test/00_6choice_variable.md +++ b/tests/results/test/00_6choice_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c | diff --git a/tests/results/test/00_6custom.md b/tests/results/test/00_6custom.md index dfdb850..544ecd2 100644 --- a/tests/results/test/00_6custom.md +++ b/tests/results/test/00_6custom.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **custom1**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test/00_6domainname.md b/tests/results/test/00_6domainname.md index 092ac73..0b9efbe 100644 --- a/tests/results/test/00_6domainname.md +++ b/tests/results/test/00_6domainname.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.<br/>**Default**: my.domain.name | diff --git a/tests/results/test/00_6domainname_params.md b/tests/results/test/00_6domainname_params.md index fbaadb5..c30358f 100644 --- a/tests/results/test/00_6domainname_params.md +++ b/tests/results/test/00_6domainname_params.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.<br/>**Validator**: the domain name can be an IP<br/>**Default**: my.domain.name | diff --git a/tests/results/test/00_6float.md b/tests/results/test/00_6float.md index 7295f1c..5db56a3 100644 --- a/tests/results/test/00_6float.md +++ b/tests/results/test/00_6float.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: 0.0 | diff --git a/tests/results/test/00_6number.md b/tests/results/test/00_6number.md index b58fa87..126c973 100644 --- a/tests/results/test/00_6number.md +++ b/tests/results/test/00_6number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: 0 | diff --git a/tests/results/test/00_6port.adoc b/tests/results/test/00_6port.adoc index e1dcd19..e33e125 100644 --- a/tests/results/test/00_6port.adoc +++ b/tests/results/test/00_6port.adoc @@ -8,9 +8,9 @@ A port variable. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed | **variable2** + @@ -18,9 +18,9 @@ A port variable. + A port variable with default value. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed **Default**: 8080 | @@ -30,9 +30,9 @@ A port variable with default value. + A port variable with integer default value. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed **Default**: 8080 |==== diff --git a/tests/results/test/00_6port.json b/tests/results/test/00_6port.json index db0f7c9..eb92fc7 100644 --- a/tests/results/test/00_6port.json +++ b/tests/results/test/00_6port.json @@ -16,9 +16,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "variable1" @@ -48,9 +48,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "variable2" @@ -80,9 +80,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "variable3" diff --git a/tests/results/test/00_6port.md b/tests/results/test/00_6port.md index 0c88f46..6ff8499 100644 --- a/tests/results/test/00_6port.md +++ b/tests/results/test/00_6port.md @@ -1,10 +1,6 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed | -| **variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed<br/>**Default**: 8080 | -| **variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed<br/>**Default**: 8080 | +| **variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed | +| **variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 | +| **variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 | diff --git a/tests/results/test/00_6port.sh b/tests/results/test/00_6port.sh index 508e050..1ba344b 100644 --- a/tests/results/test/00_6port.sh +++ b/tests/results/test/00_6port.sh @@ -2,24 +2,24 @@ - [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [1mvariable1[0m - [1;36;40mport[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A port variable. + [1;36;40mport[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A port variable. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1;33m [0m| | [1mvariable2[0m [1;36;40mport[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;33m [0m| A port variable with default value. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed [1mDefault[0m: 8080 +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1mDefault[0m: 8080 [1;33m [0m| | [1mvariable3[0m [1;36;40mport[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;33m [0m| A port variable with integer default value. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed [1mDefault[0m: 8080 +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1mDefault[0m: 8080 [1;33m [0m| diff --git a/tests/results/test/00_6regexp.md b/tests/results/test/00_6regexp.md index 1957694..da40188 100644 --- a/tests/results/test/00_6regexp.md +++ b/tests/results/test/00_6regexp.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>- #b1b1b1<br/>- #b2b2b2 | diff --git a/tests/results/test/00_6secret.md b/tests/results/test/00_6secret.md index 5a6ae56..4dc2a98 100644 --- a/tests/results/test/00_6secret.md +++ b/tests/results/test/00_6secret.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **secret1**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test/00_6secret_param.adoc b/tests/results/test/00_6secret_param.adoc new file mode 100644 index 0000000..089e337 --- /dev/null +++ b/tests/results/test/00_6secret_param.adoc @@ -0,0 +1,22 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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. + +**Validators**: + +* maximum length for the secret is 10 characters +* forbidden characters are "$" and "^" + +**Default**: value +|==== + diff --git a/tests/results/test/00_6secret_param.json b/tests/results/test/00_6secret_param.json new file mode 100644 index 0000000..03147ca --- /dev/null +++ b/tests/results/test/00_6secret_param.json @@ -0,0 +1,62 @@ +{ + "secret1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "secret" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "validators": [ + "minimum length for the secret is 10 characters" + ], + "paths": [ + "secret1" + ], + "names": [ + "secret1" + ], + "descriptions": [ + "The first variable." + ] + }, + "secret2": { + "type": "variable", + "default": "value", + "properties": [ + { + "type": "type", + "name": "secret" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "validators": [ + "maximum length for the secret is 10 characters", + "forbidden characters are \"$\" and \"^\"" + ], + "paths": [ + "secret2" + ], + "names": [ + "secret2" + ], + "descriptions": [ + "The second variable." + ] + } +} \ No newline at end of file diff --git a/tests/results/test/00_6secret_param.md b/tests/results/test/00_6secret_param.md new file mode 100644 index 0000000..73881ca --- /dev/null +++ b/tests/results/test/00_6secret_param.md @@ -0,0 +1,5 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **secret1**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters | +| **secret2**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters are "$" and "^"<br/>**Default**: value | + diff --git a/tests/results/test/00_6secret_param.sh b/tests/results/test/00_6secret_param.sh new file mode 100644 index 0000000..b3fafcc --- /dev/null +++ b/tests/results/test/00_6secret_param.sh @@ -0,0 +1,20 @@ + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1msecret1[0m + [1;36;40msecret[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first variable. + [1mValidator[0m: minimum length for the + secret is 10 characters + [1msecret2[0m + [1;36;40msecret[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m The second variable. + [1mValidators[0m: + + +[1;33m • [0mmaximum length for the secret is 10 characters +[1;33m • [0mforbidden characters are "$" and "^" [1mDefault[0m: value +[1;33m [0m| diff --git a/tests/results/test/00_6string.md b/tests/results/test/00_6string.md index a488f01..e4900e2 100644 --- a/tests/results/test/00_6string.md +++ b/tests/results/test/00_6string.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. | diff --git a/tests/results/test/00_7choice_quote.md b/tests/results/test/00_7choice_quote.md index 2ebf409..7dc7018 100644 --- a/tests/results/test/00_7choice_quote.md +++ b/tests/results/test/00_7choice_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>- quote' ← (default)<br/>- quote"<br/>- quote"' | diff --git a/tests/results/test/00_7help.adoc b/tests/results/test/00_7help.adoc new file mode 100644 index 0000000..85a7ff7 --- /dev/null +++ b/tests/results/test/00_7help.adoc @@ -0,0 +1,23 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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. + +Multi line +Help +With useful information. +|==== + diff --git a/tests/results/test/00_7help.json b/tests/results/test/00_7help.json new file mode 100644 index 0000000..9330f79 --- /dev/null +++ b/tests/results/test/00_7help.json @@ -0,0 +1,60 @@ +{ + "var1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "var1" + ], + "names": [ + "var1" + ], + "help": [ + "Multi line\n\nHelp\n\nWith useful information." + ], + "descriptions": [ + "The first variable." + ] + }, + "var2": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "var2" + ], + "names": [ + "var2" + ], + "help": [ + "Multi line\nHelp\nWith useful information." + ], + "descriptions": [ + "The second variable." + ] + } +} \ No newline at end of file diff --git a/tests/results/test/00_7help.md b/tests/results/test/00_7help.md new file mode 100644 index 0000000..bb38316 --- /dev/null +++ b/tests/results/test/00_7help.md @@ -0,0 +1,5 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Multi line<br/><br/>Help<br/><br/>With useful information. | +| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Multi line<br/>Help<br/>With useful information. | + diff --git a/tests/results/test/00_7help.sh b/tests/results/test/00_7help.sh new file mode 100644 index 0000000..e0cce0c --- /dev/null +++ b/tests/results/test/00_7help.sh @@ -0,0 +1,23 @@ + + + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mvar1[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first variable. + Multi line + Help + With useful information. + [1mvar2[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The second variable. + Multi line + Help + With useful information. + diff --git a/tests/results/test/00_7help_quote.md b/tests/results/test/00_7help_quote.md index 2f301e5..98e5868 100644 --- a/tests/results/test/00_7help_quote.md +++ b/tests/results/test/00_7help_quote.md @@ -1,9 +1,5 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Message with '. | -| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Message with ". | +| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Message with '. | +| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Message with ". | diff --git a/tests/results/test/00_7help_sup.adoc b/tests/results/test/00_7help_sup.adoc new file mode 100644 index 0000000..e3bb190 --- /dev/null +++ b/tests/results/test/00_7help_sup.adoc @@ -0,0 +1,23 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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>. + +Multi line +<Help> +With useful information. +|==== + diff --git a/tests/results/test/00_7help_sup.json b/tests/results/test/00_7help_sup.json new file mode 100644 index 0000000..345d3d4 --- /dev/null +++ b/tests/results/test/00_7help_sup.json @@ -0,0 +1,60 @@ +{ + "var1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "var1" + ], + "names": [ + "var1" + ], + "help": [ + "Multi line\n\n<Help>\n\nWith useful information." + ], + "descriptions": [ + "The first <variable>." + ] + }, + "var2": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "var2" + ], + "names": [ + "var2" + ], + "help": [ + "Multi line\n<Help>\nWith useful information." + ], + "descriptions": [ + "The second <variable>." + ] + } +} \ No newline at end of file diff --git a/tests/results/test/00_7help_sup.md b/tests/results/test/00_7help_sup.md new file mode 100644 index 0000000..eba954b --- /dev/null +++ b/tests/results/test/00_7help_sup.md @@ -0,0 +1,5 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first <variable>.<br/>Multi line<br/><br/><Help><br/><br/>With useful information. | +| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second <variable>.<br/>Multi line<br/><Help><br/>With useful information. | + diff --git a/tests/results/test/00_7help_sup.sh b/tests/results/test/00_7help_sup.sh new file mode 100644 index 0000000..334e149 --- /dev/null +++ b/tests/results/test/00_7help_sup.sh @@ -0,0 +1,23 @@ + + + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mvar1[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first <variable>. + Multi line + <Help> + With useful information. + [1mvar2[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The second <variable>. + Multi line + <Help> + With useful information. + diff --git a/tests/results/test/00_7value_doublequote.md b/tests/results/test/00_7value_doublequote.md index 2b9fdc9..7e77fb0 100644 --- a/tests/results/test/00_7value_doublequote.md +++ b/tests/results/test/00_7value_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote" | diff --git a/tests/results/test/00_7value_doublequote2.md b/tests/results/test/00_7value_doublequote2.md index 4007416..971e337 100644 --- a/tests/results/test/00_7value_doublequote2.md +++ b/tests/results/test/00_7value_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote'" | diff --git a/tests/results/test/00_7value_doublequote3.md b/tests/results/test/00_7value_doublequote3.md index 55fa5e1..e30dcdc 100644 --- a/tests/results/test/00_7value_doublequote3.md +++ b/tests/results/test/00_7value_doublequote3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote\"\' | diff --git a/tests/results/test/00_7value_quote.md b/tests/results/test/00_7value_quote.md index fe65b43..51ea039 100644 --- a/tests/results/test/00_7value_quote.md +++ b/tests/results/test/00_7value_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote' | diff --git a/tests/results/test/00_8calculation_information.md b/tests/results/test/00_8calculation_information.md index 465cf80..d4b1e61 100644 --- a/tests/results/test/00_8calculation_information.md +++ b/tests/results/test/00_8calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: get information test_information. | diff --git a/tests/results/test/00_8test.md b/tests/results/test/00_8test.md index 2839dd3..807f959 100644 --- a/tests/results/test/00_8test.md +++ b/tests/results/test/00_8test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test | diff --git a/tests/results/test/00_9choice_variable_multi.md b/tests/results/test/00_9choice_variable_multi.md index cffcd2d..d713039 100644 --- a/tests/results/test/00_9choice_variable_multi.md +++ b/tests/results/test/00_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/00_9choice_variables.md b/tests/results/test/00_9choice_variables.md index 131ee6f..01c3c5d 100644 --- a/tests/results/test/00_9choice_variables.md +++ b/tests/results/test/00_9choice_variables.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **source_variable_1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 | diff --git a/tests/results/test/00_9default_calculation.md b/tests/results/test/00_9default_calculation.md index be78e2a..e51a5d3 100644 --- a/tests/results/test/00_9default_calculation.md +++ b/tests/results/test/00_9default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: concat all parameters. | diff --git a/tests/results/test/00_9default_calculation_information.md b/tests/results/test/00_9default_calculation_information.md index fd13596..ed6abd8 100644 --- a/tests/results/test/00_9default_calculation_information.md +++ b/tests/results/test/00_9default_calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: returns the information. | diff --git a/tests/results/test/00_9default_calculation_information_other_variable.md b/tests/results/test/00_9default_calculation_information_other_variable.md index 676c080..eee1f0c 100644 --- a/tests/results/test/00_9default_calculation_information_other_variable.md +++ b/tests/results/test/00_9default_calculation_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test/00_9default_calculation_multi_optional.md b/tests/results/test/00_9default_calculation_multi_optional.md index 3aadfad..a87edfa 100644 --- a/tests/results/test/00_9default_calculation_multi_optional.md +++ b/tests/results/test/00_9default_calculation_multi_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 | diff --git a/tests/results/test/00_9default_calculation_multi_optional2.md b/tests/results/test/00_9default_calculation_multi_optional2.md index 3aadfad..a87edfa 100644 --- a/tests/results/test/00_9default_calculation_multi_optional2.md +++ b/tests/results/test/00_9default_calculation_multi_optional2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 | diff --git a/tests/results/test/00_9default_calculation_optional.md b/tests/results/test/00_9default_calculation_optional.md index 17ee814..c9b8481 100644 --- a/tests/results/test/00_9default_calculation_optional.md +++ b/tests/results/test/00_9default_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable. | diff --git a/tests/results/test/00_9default_calculation_optional_exists.md b/tests/results/test/00_9default_calculation_optional_exists.md index 2d943a0..eb37bb6 100644 --- a/tests/results/test/00_9default_calculation_optional_exists.md +++ b/tests/results/test/00_9default_calculation_optional_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.<br/>**Default**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/00_9default_calculation_param_optional.md b/tests/results/test/00_9default_calculation_param_optional.md index 9532741..185d140 100644 --- a/tests/results/test/00_9default_calculation_param_optional.md +++ b/tests/results/test/00_9default_calculation_param_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable.<br/>**Default**: returns a value. | diff --git a/tests/results/test/00_9default_information_other_variable.md b/tests/results/test/00_9default_information_other_variable.md index 19957db..e154642 100644 --- a/tests/results/test/00_9default_information_other_variable.md +++ b/tests/results/test/00_9default_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test/00_9default_information_other_variable2.md b/tests/results/test/00_9default_information_other_variable2.md index 19957db..e154642 100644 --- a/tests/results/test/00_9default_information_other_variable2.md +++ b/tests/results/test/00_9default_information_other_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. | diff --git a/tests/results/test/00_9default_integer.md b/tests/results/test/00_9default_integer.md index f06442f..8d2b76a 100644 --- a/tests/results/test/00_9default_integer.md +++ b/tests/results/test/00_9default_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: choice for 0 to 9.<br/>**Default**: 9 | diff --git a/tests/results/test/01_6boolean_multi.md b/tests/results/test/01_6boolean_multi.md index 493e522..ada7195 100644 --- a/tests/results/test/01_6boolean_multi.md +++ b/tests/results/test/01_6boolean_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: true | diff --git a/tests/results/test/01_6custom_multi.md b/tests/results/test/01_6custom_multi.md index 1fa9235..45ad16c 100644 --- a/tests/results/test/01_6custom_multi.md +++ b/tests/results/test/01_6custom_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **custom1**<br/>[`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/01_6float_multi.md b/tests/results/test/01_6float_multi.md index 29530bb..33a46f5 100644 --- a/tests/results/test/01_6float_multi.md +++ b/tests/results/test/01_6float_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: 0.0 | diff --git a/tests/results/test/01_6number_multi.md b/tests/results/test/01_6number_multi.md index 1507733..067933a 100644 --- a/tests/results/test/01_6number_multi.md +++ b/tests/results/test/01_6number_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: 0 | diff --git a/tests/results/test/01_6string_empty.md b/tests/results/test/01_6string_empty.md index 3b33a28..7e8e952 100644 --- a/tests/results/test/01_6string_empty.md +++ b/tests/results/test/01_6string_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.<br/>**Default**: <br/>- value<br/>- null | diff --git a/tests/results/test/01_6string_multi.md b/tests/results/test/01_6string_multi.md index 6c65310..1e6501c 100644 --- a/tests/results/test/01_6string_multi.md +++ b/tests/results/test/01_6string_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The first variable. | diff --git a/tests/results/test/01_7value_multi_doublequote.md b/tests/results/test/01_7value_multi_doublequote.md index 04e9e38..78846ff 100644 --- a/tests/results/test/01_7value_multi_doublequote.md +++ b/tests/results/test/01_7value_multi_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: quote" | diff --git a/tests/results/test/01_7value_multi_doublequote2.md b/tests/results/test/01_7value_multi_doublequote2.md index c9bcaf8..660b41d 100644 --- a/tests/results/test/01_7value_multi_doublequote2.md +++ b/tests/results/test/01_7value_multi_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: quote'" | diff --git a/tests/results/test/01_7value_multi_quote.md b/tests/results/test/01_7value_multi_quote.md index a69a44f..5cc9c33 100644 --- a/tests/results/test/01_7value_multi_quote.md +++ b/tests/results/test/01_7value_multi_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: quote' | diff --git a/tests/results/test/01_8calculation_information_multi.md b/tests/results/test/01_8calculation_information_multi.md index f6db923..ae56456 100644 --- a/tests/results/test/01_8calculation_information_multi.md +++ b/tests/results/test/01_8calculation_information_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: get information test_information. | diff --git a/tests/results/test/01_9choice_variable_multi.md b/tests/results/test/01_9choice_variable_multi.md index 03b0787..8121c96 100644 --- a/tests/results/test/01_9choice_variable_multi.md +++ b/tests/results/test/01_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c | diff --git a/tests/results/test/04_0type_param.md b/tests/results/test/04_0type_param.md index 80d2b90..113b773 100644 --- a/tests/results/test/04_0type_param.md +++ b/tests/results/test/04_0type_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **int**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A limited number.<br/>**Validators**: <br/>- the minimum value is 0<br/>- the maximum value is 100<br/>**Default**: 10 | diff --git a/tests/results/test/04_1auto_save.md b/tests/results/test/04_1auto_save.md index 7792476..4befc9a 100644 --- a/tests/results/test/04_1auto_save.md +++ b/tests/results/test/04_1auto_save.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `auto modified` | An auto save variable.<br/>**Default**: no | diff --git a/tests/results/test/04_1auto_save_and_calculated.md b/tests/results/test/04_1auto_save_and_calculated.md index ebc932d..9b46990 100644 --- a/tests/results/test/04_1auto_save_and_calculated.md +++ b/tests/results/test/04_1auto_save_and_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no | diff --git a/tests/results/test/04_1auto_save_and_calculated_hidden.md b/tests/results/test/04_1auto_save_and_calculated_hidden.md index 819e901..726245b 100644 --- a/tests/results/test/04_1auto_save_and_calculated_hidden.md +++ b/tests/results/test/04_1auto_save_and_calculated_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no | diff --git a/tests/results/test/04_1auto_save_and_hidden.md b/tests/results/test/04_1auto_save_and_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/04_1auto_save_and_hidden.md +++ b/tests/results/test/04_1auto_save_and_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/04_1default_calculation_hidden.md b/tests/results/test/04_1default_calculation_hidden.md index 2c38143..98d9cc2 100644 --- a/tests/results/test/04_1default_calculation_hidden.md +++ b/tests/results/test/04_1default_calculation_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: value | diff --git a/tests/results/test/04_1default_calculation_hidden_2.md b/tests/results/test/04_1default_calculation_hidden_2.md index 2c38143..98d9cc2 100644 --- a/tests/results/test/04_1default_calculation_hidden_2.md +++ b/tests/results/test/04_1default_calculation_hidden_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: value | diff --git a/tests/results/test/04_5disabled_calculation_optional.md b/tests/results/test/04_5disabled_calculation_optional.md index 0085730..fd831c6 100644 --- a/tests/results/test/04_5disabled_calculation_optional.md +++ b/tests/results/test/04_5disabled_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no | diff --git a/tests/results/test/04_5disabled_calculation_variable.md b/tests/results/test/04_5disabled_calculation_variable.md index 7990973..dcfd342 100644 --- a/tests/results/test/04_5disabled_calculation_variable.md +++ b/tests/results/test/04_5disabled_calculation_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false | diff --git a/tests/results/test/04_5disabled_calculation_variable2.md b/tests/results/test/04_5disabled_calculation_variable2.md index e1b60e8..e02bb43 100644 --- a/tests/results/test/04_5disabled_calculation_variable2.md +++ b/tests/results/test/04_5disabled_calculation_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: true | diff --git a/tests/results/test/04_5disabled_calculation_variable3.md b/tests/results/test/04_5disabled_calculation_variable3.md index 8839526..de5458d 100644 --- a/tests/results/test/04_5disabled_calculation_variable3.md +++ b/tests/results/test/04_5disabled_calculation_variable3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: yes | diff --git a/tests/results/test/04_5disabled_calculation_variable4.md b/tests/results/test/04_5disabled_calculation_variable4.md index f44c0f8..42ce4f0 100644 --- a/tests/results/test/04_5disabled_calculation_variable4.md +++ b/tests/results/test/04_5disabled_calculation_variable4.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: yes | diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.md b/tests/results/test/04_5disabled_calculation_variable_multi.md index 7fba968..16f069a 100644 --- a/tests/results/test/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test/04_5disabled_calculation_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false | diff --git a/tests/results/test/04_5disabled_calculation_variable_multi2.adoc b/tests/results/test/04_5disabled_calculation_variable_multi2.adoc new file mode 100644 index 0000000..4a1b7e1 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi2.adoc @@ -0,0 +1,16 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | +A condition. +| + +**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_5disabled_calculation_variable_multi2.json b/tests/results/test/04_5disabled_calculation_variable_multi2.json new file mode 100644 index 0000000..09bcbff --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi2.json @@ -0,0 +1,75 @@ +{ + "condition": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "condition" + ], + "names": [ + "condition" + ], + "descriptions": [ + "A condition." + ] + }, + "variable": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "disabled", + "annotation": "when the variable \"condition\" has the value \"true\"." + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } +} \ No newline at end of file diff --git a/tests/results/test/04_5disabled_calculation_variable_multi2.md b/tests/results/test/04_5disabled_calculation_variable_multi2.md new file mode 100644 index 0000000..9caa07c --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi2.md @@ -0,0 +1,5 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A condition. | +| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". | + diff --git a/tests/results/test/04_5disabled_calculation_variable_multi2.sh b/tests/results/test/04_5disabled_calculation_variable_multi2.sh new file mode 100644 index 0000000..fe66bf7 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi2.sh @@ -0,0 +1,16 @@ + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mcondition[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;36;40munique[0m A condition. + [1;36;40mmultiple[0m + [1mvariable[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;3;36;40mdisabled[0m A variable. + [1;36;40munique[0m [1;36;40mmultiple[0m + [1mDisabled[0m: when the variable + "condition" has the value "true". + diff --git a/tests/results/test/04_5disabled_calculation_variable_multi3.adoc b/tests/results/test/04_5disabled_calculation_variable_multi3.adoc new file mode 100644 index 0000000..42e79e7 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi3.adoc @@ -0,0 +1,20 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +A condition. + +**Default**: + +* val1 +* val2 +| + +**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_5disabled_calculation_variable_multi3.json b/tests/results/test/04_5disabled_calculation_variable_multi3.json new file mode 100644 index 0000000..dba8f27 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi3.json @@ -0,0 +1,79 @@ +{ + "condition": { + "type": "variable", + "default": [ + "val1", + "val2" + ], + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "condition" + ], + "names": [ + "condition" + ], + "descriptions": [ + "A condition." + ] + }, + "variable": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "disabled", + "annotation": "when the variable \"condition\" has the value \"true\"." + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } +} \ No newline at end of file diff --git a/tests/results/test/04_5disabled_calculation_variable_multi3.md b/tests/results/test/04_5disabled_calculation_variable_multi3.md new file mode 100644 index 0000000..f662f22 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi3.md @@ -0,0 +1,5 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A condition.<br/>**Default**: <br/>- val1<br/>- val2 | +| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". | + diff --git a/tests/results/test/04_5disabled_calculation_variable_multi3.sh b/tests/results/test/04_5disabled_calculation_variable_multi3.sh new file mode 100644 index 0000000..c9d9e04 --- /dev/null +++ b/tests/results/test/04_5disabled_calculation_variable_multi3.sh @@ -0,0 +1,17 @@ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mcondition[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;36;40munique[0m A condition. + [1;36;40mmultiple[0m + [1mDefault[0m: + + +[1;33m • [0mval1 +[1;33m • [0mval2 +[1;33m [0m| | [1mvariable[0m [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;3;36;40mdisabled[0m [1;36;40munique[0m [1;36;40mmultiple[0m +[1;33m [0m| A variable. [1mDisabled[0m: when the variable "condition" has the value "true". +[1;33m [0m| diff --git a/tests/results/test/04_5validators.md b/tests/results/test/04_5validators.md index c8f628c..da8319d 100644 --- a/tests/results/test/04_5validators.md +++ b/tests/results/test/04_5validators.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **int**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A number.<br/>**Validator**: the max value is 100. | diff --git a/tests/results/test/04_5validators_differ.md b/tests/results/test/04_5validators_differ.md index 4dc064d..6fba72c 100644 --- a/tests/results/test/04_5validators_differ.md +++ b/tests/results/test/04_5validators_differ.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: var1 must be different than var2.<br/>**Default**: oui<br/>**Example**: another_value | diff --git a/tests/results/test/04_5validators_multi.md b/tests/results/test/04_5validators_multi.md index 44b1e45..1505950 100644 --- a/tests/results/test/04_5validators_multi.md +++ b/tests/results/test/04_5validators_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Validator**: check length is less than 10.<br/>**Default**: <br/>- no<br/>- yes | diff --git a/tests/results/test/04_5validators_multi2.md b/tests/results/test/04_5validators_multi2.md index f05f69d..71afbe4 100644 --- a/tests/results/test/04_5validators_multi2.md +++ b/tests/results/test/04_5validators_multi2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Validator**: check length is less than 3.<br/>**Default**: <br/>- no<br/>- yes<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/05_0multi_not_uniq.md b/tests/results/test/05_0multi_not_uniq.md index db3480b..a02eb89 100644 --- a/tests/results/test/05_0multi_not_uniq.md +++ b/tests/results/test/05_0multi_not_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A variable.<br/>**Default**: non | diff --git a/tests/results/test/05_0multi_uniq.md b/tests/results/test/05_0multi_uniq.md index 5eca5f1..06772bf 100644 --- a/tests/results/test/05_0multi_uniq.md +++ b/tests/results/test/05_0multi_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: non | diff --git a/tests/results/test/12_1auto_save_expert.md b/tests/results/test/12_1auto_save_expert.md index 7573698..c7d3fc5 100644 --- a/tests/results/test/12_1auto_save_expert.md +++ b/tests/results/test/12_1auto_save_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` `mandatory` `auto modified` | A variable.<br/>**Default**: no | diff --git a/tests/results/test/16_0redefine_description.md b/tests/results/test/16_0redefine_description.md index e6ce578..9c58368 100644 --- a/tests/results/test/16_0redefine_description.md +++ b/tests/results/test/16_0redefine_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefined. | diff --git a/tests/results/test/16_2family_redefine_calculation.md b/tests/results/test/16_2family_redefine_calculation.md index 4fd14bc..ea343fd 100644 --- a/tests/results/test/16_2family_redefine_calculation.md +++ b/tests/results/test/16_2family_redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # family `basic` *`disabled`* diff --git a/tests/results/test/16_2family_redefine_disabled.md b/tests/results/test/16_2family_redefine_disabled.md index 3fc684d..e69de29 100644 --- a/tests/results/test/16_2family_redefine_disabled.md +++ b/tests/results/test/16_2family_redefine_disabled.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/16_5exists_nonexists.md b/tests/results/test/16_5exists_nonexists.md index 7e3a5bc..4c3209c 100644 --- a/tests/results/test/16_5exists_nonexists.md +++ b/tests/results/test/16_5exists_nonexists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no | diff --git a/tests/results/test/16_5exists_redefine.md b/tests/results/test/16_5exists_redefine.md index 3fc684d..e69de29 100644 --- a/tests/results/test/16_5exists_redefine.md +++ b/tests/results/test/16_5exists_redefine.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/16_5redefine_calculation.md b/tests/results/test/16_5redefine_calculation.md index b7ccf10..6b37d64 100644 --- a/tests/results/test/16_5redefine_calculation.md +++ b/tests/results/test/16_5redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: returns yes. | diff --git a/tests/results/test/16_5redefine_choice.md b/tests/results/test/16_5redefine_choice.md index 4dda436..cd9d660 100644 --- a/tests/results/test/16_5redefine_choice.md +++ b/tests/results/test/16_5redefine_choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>- a<br/>- b | diff --git a/tests/results/test/16_5redefine_default.md b/tests/results/test/16_5redefine_default.md index fd38186..09272ae 100644 --- a/tests/results/test/16_5redefine_default.md +++ b/tests/results/test/16_5redefine_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: yes | diff --git a/tests/results/test/16_5redefine_default_calculation.md b/tests/results/test/16_5redefine_default_calculation.md index f92821f..547c2a6 100644 --- a/tests/results/test/16_5redefine_default_calculation.md +++ b/tests/results/test/16_5redefine_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`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 def5348..270f3f3 100644 --- a/tests/results/test/16_5redefine_family.md +++ b/tests/results/test/16_5redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # new description `basic` diff --git a/tests/results/test/16_5redefine_help.md b/tests/results/test/16_5redefine_help.md index 1654dea..a620196 100644 --- a/tests/results/test/16_5redefine_help.md +++ b/tests/results/test/16_5redefine_help.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `basic` diff --git a/tests/results/test/16_5redefine_hidden.md b/tests/results/test/16_5redefine_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/16_5redefine_hidden.md +++ b/tests/results/test/16_5redefine_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/16_5redefine_multi.md b/tests/results/test/16_5redefine_multi.md index 5eca5f1..06772bf 100644 --- a/tests/results/test/16_5redefine_multi.md +++ b/tests/results/test/16_5redefine_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A variable.<br/>**Default**: non | diff --git a/tests/results/test/16_5redefine_remove_disable_calculation.md b/tests/results/test/16_5redefine_remove_disable_calculation.md index 5cf8846..d9d245a 100644 --- a/tests/results/test/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test/16_5redefine_remove_disable_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no | diff --git a/tests/results/test/16_5test_redefine.md b/tests/results/test/16_5test_redefine.md index da952cb..424802c 100644 --- a/tests/results/test/16_5test_redefine.md +++ b/tests/results/test/16_5test_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no<br/>**Example**: test1 | diff --git a/tests/results/test/16_6choice_redefine.md b/tests/results/test/16_6choice_redefine.md index 6a80178..dcf4e23 100644 --- a/tests/results/test/16_6choice_redefine.md +++ b/tests/results/test/16_6choice_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>- a<br/>- c ← (default) | diff --git a/tests/results/test/16_6exists_family.md b/tests/results/test/16_6exists_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test/16_6exists_family.md +++ b/tests/results/test/16_6exists_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/16_6exists_redefine_family.md b/tests/results/test/16_6exists_redefine_family.md index aeb32eb..fd961dc 100644 --- a/tests/results/test/16_6exists_redefine_family.md +++ b/tests/results/test/16_6exists_redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # new description `basic` diff --git a/tests/results/test/16exists_exists.md b/tests/results/test/16exists_exists.md index 83a8ec0..d64ef4a 100644 --- a/tests/results/test/16exists_exists.md +++ b/tests/results/test/16exists_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Description. | diff --git a/tests/results/test/17_5redefine_leadership.md b/tests/results/test/17_5redefine_leadership.md index 3fc684d..e69de29 100644 --- a/tests/results/test/17_5redefine_leadership.md +++ b/tests/results/test/17_5redefine_leadership.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/20_0empty_family.md b/tests/results/test/20_0empty_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test/20_0empty_family.md +++ b/tests/results/test/20_0empty_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/20_0family_append.md b/tests/results/test/20_0family_append.md index a0c7168..397695f 100644 --- a/tests/results/test/20_0family_append.md +++ b/tests/results/test/20_0family_append.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # A family `basic` diff --git a/tests/results/test/20_0family_underscore.md b/tests/results/test/20_0family_underscore.md index 3fc684d..e69de29 100644 --- a/tests/results/test/20_0family_underscore.md +++ b/tests/results/test/20_0family_underscore.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/20_0multi_family.md b/tests/results/test/20_0multi_family.md index 24dd5b3..e3b2960 100644 --- a/tests/results/test/20_0multi_family.md +++ b/tests/results/test/20_0multi_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `standard` diff --git a/tests/results/test/20_0multi_family_basic.md b/tests/results/test/20_0multi_family_basic.md index bd67a79..c43d9e0 100644 --- a/tests/results/test/20_0multi_family_basic.md +++ b/tests/results/test/20_0multi_family_basic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `basic` diff --git a/tests/results/test/20_0multi_family_expert.md b/tests/results/test/20_0multi_family_expert.md index a3c1d3c..ab6910d 100644 --- a/tests/results/test/20_0multi_family_expert.md +++ b/tests/results/test/20_0multi_family_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `advanced` diff --git a/tests/results/test/20_0multi_family_order.md b/tests/results/test/20_0multi_family_order.md index a02edf8..ea6e3b5 100644 --- a/tests/results/test/20_0multi_family_order.md +++ b/tests/results/test/20_0multi_family_order.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. | diff --git a/tests/results/test/20_0validators_differ_redefine.md b/tests/results/test/20_0validators_differ_redefine.md index 9494cc3..95b4651 100644 --- a/tests/results/test/20_0validators_differ_redefine.md +++ b/tests/results/test/20_0validators_differ_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no | diff --git a/tests/results/test/20_1empty_subfamily.md b/tests/results/test/20_1empty_subfamily.md index 3fc684d..e69de29 100644 --- a/tests/results/test/20_1empty_subfamily.md +++ b/tests/results/test/20_1empty_subfamily.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/20_9default_information_parent.md b/tests/results/test/20_9default_information_parent.md index dcd6b1e..539103c 100644 --- a/tests/results/test/20_9default_information_parent.md +++ b/tests/results/test/20_9default_information_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # family `basic` diff --git a/tests/results/test/20_9family_absolute.md b/tests/results/test/20_9family_absolute.md index db883db..bc6e904 100644 --- a/tests/results/test/20_9family_absolute.md +++ b/tests/results/test/20_9family_absolute.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First 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 1f3d133..9407a09 100644 --- a/tests/results/test/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test/24_0family_hidden_condition_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no | 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 9e9adf9..7672355 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: true | 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 205f399..104dfad 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no | diff --git a/tests/results/test/24_0family_mandatory_condition.md b/tests/results/test/24_0family_mandatory_condition.md index e56b81b..2dfe24d 100644 --- a/tests/results/test/24_0family_mandatory_condition.md +++ b/tests/results/test/24_0family_mandatory_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no | diff --git a/tests/results/test/24_0family_mandatory_condition_variable.md b/tests/results/test/24_0family_mandatory_condition_variable.md index d1b67e5..aacbe4a 100644 --- a/tests/results/test/24_0family_mandatory_condition_variable.md +++ b/tests/results/test/24_0family_mandatory_condition_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: true | diff --git a/tests/results/test/24_7validators_variable_optional.md b/tests/results/test/24_7validators_variable_optional.md index 2520167..6666da1 100644 --- a/tests/results/test/24_7validators_variable_optional.md +++ b/tests/results/test/24_7validators_variable_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `basic` diff --git a/tests/results/test/24_family_disabled_var_hidden.md b/tests/results/test/24_family_disabled_var_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/24_family_disabled_var_hidden.md +++ b/tests/results/test/24_family_disabled_var_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/40_0leadership.md b/tests/results/test/40_0leadership.md index 7067ca7..0431cea 100644 --- a/tests/results/test/40_0leadership.md +++ b/tests/results/test/40_0leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/40_0leadership_diff_name.md b/tests/results/test/40_0leadership_diff_name.md index 518862d..7f85b0d 100644 --- a/tests/results/test/40_0leadership_diff_name.md +++ b/tests/results/test/40_0leadership_diff_name.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/40_0leadership_empty.md b/tests/results/test/40_0leadership_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test/40_0leadership_empty.md +++ b/tests/results/test/40_0leadership_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/40_0leadership_follower_default_calculation.md b/tests/results/test/40_0leadership_follower_default_calculation.md index 4bdf2ac..3ab5d33 100644 --- a/tests/results/test/40_0leadership_follower_default_calculation.md +++ b/tests/results/test/40_0leadership_follower_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/40_0leadership_follower_default_value.md b/tests/results/test/40_0leadership_follower_default_value.md index 402226d..1ab8712 100644 --- a/tests/results/test/40_0leadership_follower_default_value.md +++ b/tests/results/test/40_0leadership_follower_default_value.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_0leadership_leader_not_multi.md b/tests/results/test/40_0leadership_leader_not_multi.md index 7e66829..160c387 100644 --- a/tests/results/test/40_0leadership_leader_not_multi.md +++ b/tests/results/test/40_0leadership_leader_not_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # general `standard` diff --git a/tests/results/test/40_1leadership_append_follower.md b/tests/results/test/40_1leadership_append_follower.md index f8fef4a..112d511 100644 --- a/tests/results/test/40_1leadership_append_follower.md +++ b/tests/results/test/40_1leadership_append_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/40_6leadership_follower_multi.md b/tests/results/test/40_6leadership_follower_multi.md index cfe2682..7d1659e 100644 --- a/tests/results/test/40_6leadership_follower_multi.md +++ b/tests/results/test/40_6leadership_follower_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # A leadership `basic` diff --git a/tests/results/test/40_8calculation_boolean.md b/tests/results/test/40_8calculation_boolean.md index bd15d14..893f5df 100644 --- a/tests/results/test/40_8calculation_boolean.md +++ b/tests/results/test/40_8calculation_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **bool**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A boolean variable.<br/>**Default**: false | diff --git a/tests/results/test/40_8calculation_multi_variable.md b/tests/results/test/40_8calculation_multi_variable.md index d8cf171..950841e 100644 --- a/tests/results/test/40_8calculation_multi_variable.md +++ b/tests/results/test/40_8calculation_multi_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- the value of the variable "var2".<br/>- the value of the variable "var3". | diff --git a/tests/results/test/40_8calculation_multi_variable_parent.md b/tests/results/test/40_8calculation_multi_variable_parent.md index 6a036d0..06a0671 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent.md +++ b/tests/results/test/40_8calculation_multi_variable_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no | diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.md b/tests/results/test/40_8calculation_multi_variable_parent2.md index 3364c29..25357cb 100644 --- a/tests/results/test/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test/40_8calculation_multi_variable_parent2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # first family `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.md index 70da255..b724fef 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.md index 70da255..b724fef 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.md b/tests/results/test/40_9leadership-calculation-outside-follower.md index 85b7bde..c9cea30 100644 --- a/tests/results/test/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test/40_9leadership-calculation-outside-follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.md index d201178..e4b2c2f 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.md index d201178..e4b2c2f 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.md b/tests/results/test/40_9leadership-calculation-outside-leader.md index bec1b86..9a926e2 100644 --- a/tests/results/test/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test/40_9leadership-calculation-outside-leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `standard` diff --git a/tests/results/test/41_0choice_leader.md b/tests/results/test/41_0choice_leader.md index eefa7b3..3b9de2c 100644 --- a/tests/results/test/41_0choice_leader.md +++ b/tests/results/test/41_0choice_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # The leadership `basic` diff --git a/tests/results/test/44_0leadership_hidden.md b/tests/results/test/44_0leadership_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/44_0leadership_hidden.md +++ b/tests/results/test/44_0leadership_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/44_0leadership_leader_hidden.md b/tests/results/test/44_0leadership_leader_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/44_0leadership_leader_hidden.md +++ b/tests/results/test/44_0leadership_leader_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/44_1leadership_append_hidden_follower.md b/tests/results/test/44_1leadership_append_hidden_follower.md index 3fc684d..e69de29 100644 --- a/tests/results/test/44_1leadership_append_hidden_follower.md +++ b/tests/results/test/44_1leadership_append_hidden_follower.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/44_4leadership_mandatory.md b/tests/results/test/44_4leadership_mandatory.md index 4f4ccc2..86794a5 100644 --- a/tests/results/test/44_4leadership_mandatory.md +++ b/tests/results/test/44_4leadership_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/44_4leadership_mandatory_follower.md b/tests/results/test/44_4leadership_mandatory_follower.md index 3e25cd7..2b17dc0 100644 --- a/tests/results/test/44_4leadership_mandatory_follower.md +++ b/tests/results/test/44_4leadership_mandatory_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a leadership `basic` diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.md b/tests/results/test/44_5leadership_leader_hidden_calculation.md index 0206e63..ff37c0e 100644 --- a/tests/results/test/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test/44_5leadership_leader_hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no | diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.md b/tests/results/test/44_6leadership_follower_disabled_calculation.md index 46a2979..414a263 100644 --- a/tests/results/test/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test/44_6leadership_follower_disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: yes | diff --git a/tests/results/test/60_0family_dynamic.md b/tests/results/test/60_0family_dynamic.md index 73b5c5a..e19e739 100644 --- a/tests/results/test/60_0family_dynamic.md +++ b/tests/results/test/60_0family_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_0family_dynamic_1_1.md b/tests/results/test/60_0family_dynamic_1_1.md index ac21a30..10a84df 100644 --- a/tests/results/test/60_0family_dynamic_1_1.md +++ b/tests/results/test/60_0family_dynamic_1_1.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 a7dc292..30f890a 100644 --- a/tests/results/test/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test/60_0family_dynamic_1_1_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_0family_dynamic_empty.md b/tests/results/test/60_0family_dynamic_empty.md index 0afe1be..3201ec3 100644 --- a/tests/results/test/60_0family_dynamic_empty.md +++ b/tests/results/test/60_0family_dynamic_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. | diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.adoc b/tests/results/test/60_0family_dynamic_forbidden_char.adoc new file mode 100644 index 0000000..9277b23 --- /dev/null +++ b/tests/results/test/60_0family_dynamic_forbidden_char.adoc @@ -0,0 +1,41 @@ +[cols="1a,1a"] +|==== +| Variable | Description +| + +**var** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +A suffix variable. + +**Default**: + +* val.1 +* val.2 +|==== + +== A dynamic family + +`standard` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "var". + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**dyn__val.1__.var1** + +**dyn__val.2__.var1** + +`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.2__.var2** + +`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.json b/tests/results/test/60_0family_dynamic_forbidden_char.json new file mode 100644 index 0000000..bc64753 --- /dev/null +++ b/tests/results/test/60_0family_dynamic_forbidden_char.json @@ -0,0 +1,124 @@ +{ + "var": { + "type": "variable", + "default": [ + "val.1", + "val.2" + ], + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "var" + ], + "names": [ + "var" + ], + "descriptions": [ + "A suffix variable." + ] + }, + "dyn{{ identifier }}": { + "type": "dynamic", + "informations": { + "paths": [ + "dynval.1", + "dynval.2" + ], + "names": [ + "dynval_1", + "dynval_2" + ], + "description": "A dynamic family", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ], + "identifiers": "the value of the variable \"var\".", + "help": [ + "This family builds families dynamically." + ] + }, + "children": { + "dyn{{ identifier }}.var1": { + "paths": [ + "dynval.1.var1", + "dynval.2.var1" + ], + "names": [ + "var1", + "var1" + ], + "type": "variable", + "default": "the value of the identifier.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "descriptions": [ + "A dynamic variable." + ] + }, + "dyn{{ identifier }}.var2": { + "paths": [ + "dynval.1.var2", + "dynval.2.var2" + ], + "names": [ + "var2", + "var2" + ], + "type": "variable", + "default": "depends on a calculation.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "descriptions": [ + "A dynamic variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.md b/tests/results/test/60_0family_dynamic_forbidden_char.md new file mode 100644 index 0000000..2f58231 --- /dev/null +++ b/tests/results/test/60_0family_dynamic_forbidden_char.md @@ -0,0 +1,17 @@ +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val.1<br/>- val.2 | + +# A dynamic family + +`standard` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "var". + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **dyn*val.1*.var1**<br/>**dyn*val.2*.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: the value of the identifier. | +| **dyn*val.1*.var2**<br/>**dyn*val.2*.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: depends on a calculation. | + diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.sh b/tests/results/test/60_0family_dynamic_forbidden_char.sh new file mode 100644 index 0000000..6093bd8 --- /dev/null +++ b/tests/results/test/60_0family_dynamic_forbidden_char.sh @@ -0,0 +1,45 @@ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mvar[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;36;40munique[0m A suffix variable. + [1;36;40mmultiple[0m + [1mDefault[0m: + + +[1;33m • [0mval.1 +[1;33m • [0mval.2 +[1;33m [0m| + +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mA dynamic family[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + +[1;36;40mstandard[0m + +This family builds families dynamically. + +[1mIdentifiers[0m: the value of the variable "var". + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mdyn[0m[1;3mval.1[0m[1m.var1[0m + [1mdyn[0m[1;3mval.2[0m[1m.var1[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m A dynamic variable. + [1mDefault[0m: the value of the + identifier. + [1mdyn[0m[1;3mval.1[0m[1m.var2[0m + [1mdyn[0m[1;3mval.2[0m[1m.var2[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m A dynamic variable. + [1mDefault[0m: depends on a calculation. + diff --git a/tests/results/test/60_0family_dynamic_no_description.md b/tests/results/test/60_0family_dynamic_no_description.md index 8f9a69c..77aa7ee 100644 --- a/tests/results/test/60_0family_dynamic_no_description.md +++ b/tests/results/test/60_0family_dynamic_no_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 143c969..c4c2f41 100644 --- a/tests/results/test/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test/60_0family_dynamic_no_description_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_0family_dynamic_static.md b/tests/results/test/60_0family_dynamic_static.md index 940fadb..3ee3b46 100644 --- a/tests/results/test/60_0family_dynamic_static.md +++ b/tests/results/test/60_0family_dynamic_static.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a dynamic family `basic` diff --git a/tests/results/test/60_0family_dynamic_test.md b/tests/results/test/60_0family_dynamic_test.md index a46f00b..57cab77 100644 --- a/tests/results/test/60_0family_dynamic_test.md +++ b/tests/results/test/60_0family_dynamic_test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_0family_dynamic_variable_empty.md b/tests/results/test/60_0family_dynamic_variable_empty.md index 8767f36..f214aed 100644 --- a/tests/results/test/60_0family_dynamic_variable_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable. | diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.md b/tests/results/test/60_0family_dynamic_variable_suffix.md index e78246e..89a0bae 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 f3867a1..3fc9ded 100644 --- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_0family_empty.md b/tests/results/test/60_0family_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test/60_0family_empty.md +++ b/tests/results/test/60_0family_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/60_0family_hidden.md b/tests/results/test/60_0family_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test/60_0family_hidden.md +++ b/tests/results/test/60_0family_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test/60_0family_mode.md b/tests/results/test/60_0family_mode.md index 194e435..b4d6d6e 100644 --- a/tests/results/test/60_0family_mode.md +++ b/tests/results/test/60_0family_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a family `basic` diff --git a/tests/results/test/60_1family_dynamic_jinja.md b/tests/results/test/60_1family_dynamic_jinja.md index ee28e58..c07cf07 100644 --- a/tests/results/test/60_1family_dynamic_jinja.md +++ b/tests/results/test/60_1family_dynamic_jinja.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 0917566..8ce1a0e 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 f7a8755..7a87853 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 0d74b09..8f0e0f6 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.<br/>**Examples**: <br/>- val1<br/>- val2 | 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 4b43c48..8b0cba4 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_2family_dynamic_outside_calc.md b/tests/results/test/60_2family_dynamic_outside_calc.md index a3ec634..02340cf 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc.md +++ b/tests/results/test/60_2family_dynamic_outside_calc.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffx variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 0980283..4f50d60 100644 --- a/tests/results/test/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffx variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.md b/tests/results/test/60_5family_dynamic_calc_suffix2.md index 0b4bc7c..4b4c3bd 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 a623b8d..99977cc 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | 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 e627f37..cf35e54 100644 --- a/tests/results/test/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A identifier variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 f09caf9..8ae4d4f 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A identifier variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_5family_dynamic_calc_variable.md b/tests/results/test/60_5family_dynamic_calc_variable.md index a24ae3a..93941db 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable.md +++ b/tests/results/test/60_5family_dynamic_calc_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 be1d4ce..6e9d31b 100644 --- a/tests/results/test/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.md b/tests/results/test/60_5family_dynamic_hidden_suffix.md index 5bab178..f433a50 100644 --- a/tests/results/test/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test/60_5family_dynamic_hidden_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # a dynamic family `standard` *`hidden`* 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 6263650..4e8c50d 100644 --- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | 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 7aeb32d..4a568df 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 @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Asuffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_6family_dynamic_leadership.md b/tests/results/test/60_6family_dynamic_leadership.md index 0b3326e..4837820 100644 --- a/tests/results/test/60_6family_dynamic_leadership.md +++ b/tests/results/test/60_6family_dynamic_leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.md b/tests/results/test/60_6family_dynamic_leadership_empty.md index 2b57e7a..0d1b97c 100644 --- a/tests/results/test/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test/60_6family_dynamic_leadership_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | diff --git a/tests/results/test/60_9family_dynamic_calc_both.md b/tests/results/test/60_9family_dynamic_calc_both.md index d3897fe..cc54b3a 100644 --- a/tests/results/test/60_9family_dynamic_calc_both.md +++ b/tests/results/test/60_9family_dynamic_calc_both.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A suffix variable.<br/>**Default**: val2 | diff --git a/tests/results/test/68_0family_leadership_mode.md b/tests/results/test/68_0family_leadership_mode.md index 83c3a77..1dc7e1d 100644 --- a/tests/results/test/68_0family_leadership_mode.md +++ b/tests/results/test/68_0family_leadership_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # A leadership `basic` diff --git a/tests/results/test_examples/00_0empty.md b/tests/results/test_examples/00_0empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/00_0empty.md +++ b/tests/results/test_examples/00_0empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/00_0version_underscore.md b/tests/results/test_examples/00_0version_underscore.md index 216cfcb..fadd85e 100644 --- a/tests/results/test_examples/00_0version_underscore.md +++ b/tests/results/test_examples/00_0version_underscore.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_1empty_variable.md b/tests/results/test_examples/00_1empty_variable.md index 3020648..a30c2a8 100644 --- a/tests/results/test_examples/00_1empty_variable.md +++ b/tests/results/test_examples/00_1empty_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_2default_calculated.md b/tests/results/test_examples/00_2default_calculated.md index ba381ad..6fb3bbb 100644 --- a/tests/results/test_examples/00_2default_calculated.md +++ b/tests/results/test_examples/00_2default_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_2default_calculated_multi.md b/tests/results/test_examples/00_2default_calculated_multi.md index 4c43a9e..1563590 100644 --- a/tests/results/test_examples/00_2default_calculated_multi.md +++ b/tests/results/test_examples/00_2default_calculated_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_2default_calculated_variable_transitive.md b/tests/results/test_examples/00_2default_calculated_variable_transitive.md index d21ef9b..d4d2f9b 100644 --- a/tests/results/test_examples/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_examples/00_2default_calculated_variable_transitive.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_4load_subfolder.md b/tests/results/test_examples/00_4load_subfolder.md index 1fe02d9..878b944 100644 --- a/tests/results/test_examples/00_4load_subfolder.md +++ b/tests/results/test_examples/00_4load_subfolder.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_5load_notype.md b/tests/results/test_examples/00_5load_notype.md index de8f195..e368d84 100644 --- a/tests/results/test_examples/00_5load_notype.md +++ b/tests/results/test_examples/00_5load_notype.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6boolean.md b/tests/results/test_examples/00_6boolean.md index 632dcd4..4caac20 100644 --- a/tests/results/test_examples/00_6boolean.md +++ b/tests/results/test_examples/00_6boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6boolean_no_mandatory.md b/tests/results/test_examples/00_6boolean_no_mandatory.md index c5dd24b..f49ae44 100644 --- a/tests/results/test_examples/00_6boolean_no_mandatory.md +++ b/tests/results/test_examples/00_6boolean_no_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6choice.md b/tests/results/test_examples/00_6choice.md index 3a07580..8b1bd78 100644 --- a/tests/results/test_examples/00_6choice.md +++ b/tests/results/test_examples/00_6choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_6choice_calculation.md b/tests/results/test_examples/00_6choice_calculation.md index 68394b0..fe161c0 100644 --- a/tests/results/test_examples/00_6choice_calculation.md +++ b/tests/results/test_examples/00_6choice_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6choice_variable.md b/tests/results/test_examples/00_6choice_variable.md index c8452e2..e497e09 100644 --- a/tests/results/test_examples/00_6choice_variable.md +++ b/tests/results/test_examples/00_6choice_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6custom.md b/tests/results/test_examples/00_6custom.md index b5e6e13..d19e224 100644 --- a/tests/results/test_examples/00_6custom.md +++ b/tests/results/test_examples/00_6custom.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_6domainname.md b/tests/results/test_examples/00_6domainname.md index eeaa3ab..5f2a27f 100644 --- a/tests/results/test_examples/00_6domainname.md +++ b/tests/results/test_examples/00_6domainname.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6domainname_params.md b/tests/results/test_examples/00_6domainname_params.md index eeaa3ab..5f2a27f 100644 --- a/tests/results/test_examples/00_6domainname_params.md +++ b/tests/results/test_examples/00_6domainname_params.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6float.md b/tests/results/test_examples/00_6float.md index fd8a381..7476650 100644 --- a/tests/results/test_examples/00_6float.md +++ b/tests/results/test_examples/00_6float.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6number.md b/tests/results/test_examples/00_6number.md index 4911683..25d1106 100644 --- a/tests/results/test_examples/00_6number.md +++ b/tests/results/test_examples/00_6number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6port.md b/tests/results/test_examples/00_6port.md index 9f4db28..3318076 100644 --- a/tests/results/test_examples/00_6port.md +++ b/tests/results/test_examples/00_6port.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_6regexp.md b/tests/results/test_examples/00_6regexp.md index 5bc83de..a1dbcca 100644 --- a/tests/results/test_examples/00_6regexp.md +++ b/tests/results/test_examples/00_6regexp.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_6secret.md b/tests/results/test_examples/00_6secret.md index d7770cc..837d6f4 100644 --- a/tests/results/test_examples/00_6secret.md +++ b/tests/results/test_examples/00_6secret.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_6secret_param.md b/tests/results/test_examples/00_6secret_param.md new file mode 100644 index 0000000..837d6f4 --- /dev/null +++ b/tests/results/test_examples/00_6secret_param.md @@ -0,0 +1,13 @@ +# Example with mandatory variables not filled in + +```yaml +--- +secret1: secrets +``` +# Example with all variables modifiable + +```yaml +--- +secret1: secrets +secret2: value +``` diff --git a/tests/results/test_examples/00_6string.md b/tests/results/test_examples/00_6string.md index 9215add..e07db21 100644 --- a/tests/results/test_examples/00_6string.md +++ b/tests/results/test_examples/00_6string.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_7choice_quote.md b/tests/results/test_examples/00_7choice_quote.md index f09e0bf..65af1e9 100644 --- a/tests/results/test_examples/00_7choice_quote.md +++ b/tests/results/test_examples/00_7choice_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_7help.md b/tests/results/test_examples/00_7help.md new file mode 100644 index 0000000..878b944 --- /dev/null +++ b/tests/results/test_examples/00_7help.md @@ -0,0 +1,14 @@ +# Example with mandatory variables not filled in + +```yaml +--- +var1: example +var2: example +``` +# Example with all variables modifiable + +```yaml +--- +var1: example +var2: example +``` diff --git a/tests/results/test_examples/00_7help_quote.md b/tests/results/test_examples/00_7help_quote.md index 1fe02d9..878b944 100644 --- a/tests/results/test_examples/00_7help_quote.md +++ b/tests/results/test_examples/00_7help_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_7help_sup.md b/tests/results/test_examples/00_7help_sup.md new file mode 100644 index 0000000..878b944 --- /dev/null +++ b/tests/results/test_examples/00_7help_sup.md @@ -0,0 +1,14 @@ +# Example with mandatory variables not filled in + +```yaml +--- +var1: example +var2: example +``` +# Example with all variables modifiable + +```yaml +--- +var1: example +var2: example +``` diff --git a/tests/results/test_examples/00_7value_doublequote.md b/tests/results/test_examples/00_7value_doublequote.md index 66c8021..ed9e803 100644 --- a/tests/results/test_examples/00_7value_doublequote.md +++ b/tests/results/test_examples/00_7value_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_7value_doublequote2.md b/tests/results/test_examples/00_7value_doublequote2.md index 738830a..fcada9f 100644 --- a/tests/results/test_examples/00_7value_doublequote2.md +++ b/tests/results/test_examples/00_7value_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_7value_doublequote3.md b/tests/results/test_examples/00_7value_doublequote3.md index 1393536..1946567 100644 --- a/tests/results/test_examples/00_7value_doublequote3.md +++ b/tests/results/test_examples/00_7value_doublequote3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_7value_quote.md b/tests/results/test_examples/00_7value_quote.md index c42dbd1..ccd8218 100644 --- a/tests/results/test_examples/00_7value_quote.md +++ b/tests/results/test_examples/00_7value_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_8calculation_information.md b/tests/results/test_examples/00_8calculation_information.md index ba2fe49..dc986dc 100644 --- a/tests/results/test_examples/00_8calculation_information.md +++ b/tests/results/test_examples/00_8calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_8test.md b/tests/results/test_examples/00_8test.md index 8e53a46..b999ef8 100644 --- a/tests/results/test_examples/00_8test.md +++ b/tests/results/test_examples/00_8test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9choice_variable_multi.md b/tests/results/test_examples/00_9choice_variable_multi.md index 44df40a..b008833 100644 --- a/tests/results/test_examples/00_9choice_variable_multi.md +++ b/tests/results/test_examples/00_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9choice_variables.md b/tests/results/test_examples/00_9choice_variables.md index cb055f5..4314c84 100644 --- a/tests/results/test_examples/00_9choice_variables.md +++ b/tests/results/test_examples/00_9choice_variables.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation.md b/tests/results/test_examples/00_9default_calculation.md index 6309957..068423c 100644 --- a/tests/results/test_examples/00_9default_calculation.md +++ b/tests/results/test_examples/00_9default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_information.md b/tests/results/test_examples/00_9default_calculation_information.md index 081c82a..1eb419a 100644 --- a/tests/results/test_examples/00_9default_calculation_information.md +++ b/tests/results/test_examples/00_9default_calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_information_other_variable.md b/tests/results/test_examples/00_9default_calculation_information_other_variable.md index fcffcff..4c4e66c 100644 --- a/tests/results/test_examples/00_9default_calculation_information_other_variable.md +++ b/tests/results/test_examples/00_9default_calculation_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_multi_optional.md b/tests/results/test_examples/00_9default_calculation_multi_optional.md index 89d1790..0f01542 100644 --- a/tests/results/test_examples/00_9default_calculation_multi_optional.md +++ b/tests/results/test_examples/00_9default_calculation_multi_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_multi_optional2.md b/tests/results/test_examples/00_9default_calculation_multi_optional2.md index 89d1790..0f01542 100644 --- a/tests/results/test_examples/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_examples/00_9default_calculation_multi_optional2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_optional.md b/tests/results/test_examples/00_9default_calculation_optional.md index d6aea3b..afc6e63 100644 --- a/tests/results/test_examples/00_9default_calculation_optional.md +++ b/tests/results/test_examples/00_9default_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_optional_exists.md b/tests/results/test_examples/00_9default_calculation_optional_exists.md index cae8dae..b5f8162 100644 --- a/tests/results/test_examples/00_9default_calculation_optional_exists.md +++ b/tests/results/test_examples/00_9default_calculation_optional_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_calculation_param_optional.md b/tests/results/test_examples/00_9default_calculation_param_optional.md index 63e4459..9fbf587 100644 --- a/tests/results/test_examples/00_9default_calculation_param_optional.md +++ b/tests/results/test_examples/00_9default_calculation_param_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/00_9default_information_other_variable.md b/tests/results/test_examples/00_9default_information_other_variable.md index fcffcff..4c4e66c 100644 --- a/tests/results/test_examples/00_9default_information_other_variable.md +++ b/tests/results/test_examples/00_9default_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9default_information_other_variable2.md b/tests/results/test_examples/00_9default_information_other_variable2.md index fcffcff..4c4e66c 100644 --- a/tests/results/test_examples/00_9default_information_other_variable2.md +++ b/tests/results/test_examples/00_9default_information_other_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/00_9default_integer.md b/tests/results/test_examples/00_9default_integer.md index 68394b0..fe161c0 100644 --- a/tests/results/test_examples/00_9default_integer.md +++ b/tests/results/test_examples/00_9default_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_6boolean_multi.md b/tests/results/test_examples/01_6boolean_multi.md index f75558d..2a51fe3 100644 --- a/tests/results/test_examples/01_6boolean_multi.md +++ b/tests/results/test_examples/01_6boolean_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_6custom_multi.md b/tests/results/test_examples/01_6custom_multi.md index 33a738d..1187b48 100644 --- a/tests/results/test_examples/01_6custom_multi.md +++ b/tests/results/test_examples/01_6custom_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/01_6float_multi.md b/tests/results/test_examples/01_6float_multi.md index 275813d..5378f22 100644 --- a/tests/results/test_examples/01_6float_multi.md +++ b/tests/results/test_examples/01_6float_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_6number_multi.md b/tests/results/test_examples/01_6number_multi.md index b521eb7..c0586a7 100644 --- a/tests/results/test_examples/01_6number_multi.md +++ b/tests/results/test_examples/01_6number_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_6string_empty.md b/tests/results/test_examples/01_6string_empty.md index 27d10dd..99aaf7c 100644 --- a/tests/results/test_examples/01_6string_empty.md +++ b/tests/results/test_examples/01_6string_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_6string_multi.md b/tests/results/test_examples/01_6string_multi.md index b03aea4..17aea1d 100644 --- a/tests/results/test_examples/01_6string_multi.md +++ b/tests/results/test_examples/01_6string_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/01_7value_multi_doublequote.md b/tests/results/test_examples/01_7value_multi_doublequote.md index a308171..654dff4 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote.md +++ b/tests/results/test_examples/01_7value_multi_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_7value_multi_doublequote2.md b/tests/results/test_examples/01_7value_multi_doublequote2.md index d95ad00..f9a6cee 100644 --- a/tests/results/test_examples/01_7value_multi_doublequote2.md +++ b/tests/results/test_examples/01_7value_multi_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_7value_multi_quote.md b/tests/results/test_examples/01_7value_multi_quote.md index d55be9c..d433642 100644 --- a/tests/results/test_examples/01_7value_multi_quote.md +++ b/tests/results/test_examples/01_7value_multi_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_8calculation_information_multi.md b/tests/results/test_examples/01_8calculation_information_multi.md index 439b258..8484f37 100644 --- a/tests/results/test_examples/01_8calculation_information_multi.md +++ b/tests/results/test_examples/01_8calculation_information_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/01_9choice_variable_multi.md b/tests/results/test_examples/01_9choice_variable_multi.md index 589cf27..ba31acf 100644 --- a/tests/results/test_examples/01_9choice_variable_multi.md +++ b/tests/results/test_examples/01_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_0type_param.md b/tests/results/test_examples/04_0type_param.md index 8f481f1..ced75d4 100644 --- a/tests/results/test_examples/04_0type_param.md +++ b/tests/results/test_examples/04_0type_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_1auto_save.md b/tests/results/test_examples/04_1auto_save.md index 0edb557..52c0857 100644 --- a/tests/results/test_examples/04_1auto_save.md +++ b/tests/results/test_examples/04_1auto_save.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_1auto_save_and_calculated.md b/tests/results/test_examples/04_1auto_save_and_calculated.md index 63e4459..9fbf587 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated.md +++ b/tests/results/test_examples/04_1auto_save_and_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.md b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.md index e6a2a81..2901879 100644 --- a/tests/results/test_examples/04_1auto_save_and_calculated_hidden.md +++ b/tests/results/test_examples/04_1auto_save_and_calculated_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_1auto_save_and_hidden.md b/tests/results/test_examples/04_1auto_save_and_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/04_1auto_save_and_hidden.md +++ b/tests/results/test_examples/04_1auto_save_and_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/04_1default_calculation_hidden.md b/tests/results/test_examples/04_1default_calculation_hidden.md index b057d97..9655cda 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden.md +++ b/tests/results/test_examples/04_1default_calculation_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_1default_calculation_hidden_2.md b/tests/results/test_examples/04_1default_calculation_hidden_2.md index 433003a..9f41953 100644 --- a/tests/results/test_examples/04_1default_calculation_hidden_2.md +++ b/tests/results/test_examples/04_1default_calculation_hidden_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_optional.md b/tests/results/test_examples/04_5disabled_calculation_optional.md index f32e84d..b4646ea 100644 --- a/tests/results/test_examples/04_5disabled_calculation_optional.md +++ b/tests/results/test_examples/04_5disabled_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable.md b/tests/results/test_examples/04_5disabled_calculation_variable.md index e2639e9..dcfa063 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable2.md b/tests/results/test_examples/04_5disabled_calculation_variable2.md index b675fb5..915194d 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable2.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable3.md b/tests/results/test_examples/04_5disabled_calculation_variable3.md index 643f28c..ba06579 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable3.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable4.md b/tests/results/test_examples/04_5disabled_calculation_variable4.md index 643f28c..ba06579 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable4.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable4.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi.md b/tests/results/test_examples/04_5disabled_calculation_variable_multi.md index 49d6298..59ccc81 100644 --- a/tests/results/test_examples/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi2.md b/tests/results/test_examples/04_5disabled_calculation_variable_multi2.md new file mode 100644 index 0000000..a78f2b0 --- /dev/null +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi2.md @@ -0,0 +1,18 @@ +# Example with mandatory variables not filled in + +```yaml +--- +condition: + - example +variable: + - example +``` +# Example with all variables modifiable + +```yaml +--- +condition: + - example +variable: + - example +``` diff --git a/tests/results/test_examples/04_5disabled_calculation_variable_multi3.md b/tests/results/test_examples/04_5disabled_calculation_variable_multi3.md new file mode 100644 index 0000000..dbbb6eb --- /dev/null +++ b/tests/results/test_examples/04_5disabled_calculation_variable_multi3.md @@ -0,0 +1,17 @@ +# Example with mandatory variables not filled in + +```yaml +--- +variable: + - example +``` +# Example with all variables modifiable + +```yaml +--- +condition: + - val1 + - val2 +variable: + - example +``` diff --git a/tests/results/test_examples/04_5validators.md b/tests/results/test_examples/04_5validators.md index d2f4822..e0f70b4 100644 --- a/tests/results/test_examples/04_5validators.md +++ b/tests/results/test_examples/04_5validators.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/04_5validators_differ.md b/tests/results/test_examples/04_5validators_differ.md index 1ce775a..b405d51 100644 --- a/tests/results/test_examples/04_5validators_differ.md +++ b/tests/results/test_examples/04_5validators_differ.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_5validators_multi.md b/tests/results/test_examples/04_5validators_multi.md index 766aa2f..d70d9ac 100644 --- a/tests/results/test_examples/04_5validators_multi.md +++ b/tests/results/test_examples/04_5validators_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/04_5validators_multi2.md b/tests/results/test_examples/04_5validators_multi2.md index 5c24437..47eabc7 100644 --- a/tests/results/test_examples/04_5validators_multi2.md +++ b/tests/results/test_examples/04_5validators_multi2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/05_0multi_not_uniq.md b/tests/results/test_examples/05_0multi_not_uniq.md index a0173d7..762dca8 100644 --- a/tests/results/test_examples/05_0multi_not_uniq.md +++ b/tests/results/test_examples/05_0multi_not_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/05_0multi_uniq.md b/tests/results/test_examples/05_0multi_uniq.md index 6a582f0..6a83cec 100644 --- a/tests/results/test_examples/05_0multi_uniq.md +++ b/tests/results/test_examples/05_0multi_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/12_1auto_save_expert.md b/tests/results/test_examples/12_1auto_save_expert.md index 5a2b54b..304e897 100644 --- a/tests/results/test_examples/12_1auto_save_expert.md +++ b/tests/results/test_examples/12_1auto_save_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_0redefine_description.md b/tests/results/test_examples/16_0redefine_description.md index 1291168..cb88704 100644 --- a/tests/results/test_examples/16_0redefine_description.md +++ b/tests/results/test_examples/16_0redefine_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_2family_redefine_calculation.md b/tests/results/test_examples/16_2family_redefine_calculation.md index 5ca6910..ae8b7bc 100644 --- a/tests/results/test_examples/16_2family_redefine_calculation.md +++ b/tests/results/test_examples/16_2family_redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_2family_redefine_disabled.md b/tests/results/test_examples/16_2family_redefine_disabled.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/16_2family_redefine_disabled.md +++ b/tests/results/test_examples/16_2family_redefine_disabled.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/16_5exists_nonexists.md b/tests/results/test_examples/16_5exists_nonexists.md index e6a2a81..2901879 100644 --- a/tests/results/test_examples/16_5exists_nonexists.md +++ b/tests/results/test_examples/16_5exists_nonexists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_5exists_redefine.md b/tests/results/test_examples/16_5exists_redefine.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/16_5exists_redefine.md +++ b/tests/results/test_examples/16_5exists_redefine.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/16_5redefine_calculation.md b/tests/results/test_examples/16_5redefine_calculation.md index 16e8374..b80a634 100644 --- a/tests/results/test_examples/16_5redefine_calculation.md +++ b/tests/results/test_examples/16_5redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_5redefine_choice.md b/tests/results/test_examples/16_5redefine_choice.md index 93fc622..64f9fb6 100644 --- a/tests/results/test_examples/16_5redefine_choice.md +++ b/tests/results/test_examples/16_5redefine_choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_5redefine_default.md b/tests/results/test_examples/16_5redefine_default.md index 16e8374..b80a634 100644 --- a/tests/results/test_examples/16_5redefine_default.md +++ b/tests/results/test_examples/16_5redefine_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_5redefine_default_calculation.md b/tests/results/test_examples/16_5redefine_default_calculation.md index da42c65..5f24aae 100644 --- a/tests/results/test_examples/16_5redefine_default_calculation.md +++ b/tests/results/test_examples/16_5redefine_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_5redefine_family.md b/tests/results/test_examples/16_5redefine_family.md index 90e0bcb..dc98241 100644 --- a/tests/results/test_examples/16_5redefine_family.md +++ b/tests/results/test_examples/16_5redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_5redefine_help.md b/tests/results/test_examples/16_5redefine_help.md index 90e0bcb..dc98241 100644 --- a/tests/results/test_examples/16_5redefine_help.md +++ b/tests/results/test_examples/16_5redefine_help.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_5redefine_hidden.md b/tests/results/test_examples/16_5redefine_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/16_5redefine_hidden.md +++ b/tests/results/test_examples/16_5redefine_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/16_5redefine_multi.md b/tests/results/test_examples/16_5redefine_multi.md index 6a582f0..6a83cec 100644 --- a/tests/results/test_examples/16_5redefine_multi.md +++ b/tests/results/test_examples/16_5redefine_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_5redefine_remove_disable_calculation.md b/tests/results/test_examples/16_5redefine_remove_disable_calculation.md index 2e032b4..960ab4f 100644 --- a/tests/results/test_examples/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_examples/16_5redefine_remove_disable_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_5test_redefine.md b/tests/results/test_examples/16_5test_redefine.md index e239675..d970a3a 100644 --- a/tests/results/test_examples/16_5test_redefine.md +++ b/tests/results/test_examples/16_5test_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16_6choice_redefine.md b/tests/results/test_examples/16_6choice_redefine.md index c24ba21..201e645 100644 --- a/tests/results/test_examples/16_6choice_redefine.md +++ b/tests/results/test_examples/16_6choice_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/16_6exists_family.md b/tests/results/test_examples/16_6exists_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/16_6exists_family.md +++ b/tests/results/test_examples/16_6exists_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/16_6exists_redefine_family.md b/tests/results/test_examples/16_6exists_redefine_family.md index 61ad587..0784d2a 100644 --- a/tests/results/test_examples/16_6exists_redefine_family.md +++ b/tests/results/test_examples/16_6exists_redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/16exists_exists.md b/tests/results/test_examples/16exists_exists.md index 1291168..cb88704 100644 --- a/tests/results/test_examples/16exists_exists.md +++ b/tests/results/test_examples/16exists_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/17_5redefine_leadership.md b/tests/results/test_examples/17_5redefine_leadership.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/17_5redefine_leadership.md +++ b/tests/results/test_examples/17_5redefine_leadership.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/20_0empty_family.md b/tests/results/test_examples/20_0empty_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/20_0empty_family.md +++ b/tests/results/test_examples/20_0empty_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/20_0family_append.md b/tests/results/test_examples/20_0family_append.md index a783575..69190d8 100644 --- a/tests/results/test_examples/20_0family_append.md +++ b/tests/results/test_examples/20_0family_append.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/20_0family_underscore.md b/tests/results/test_examples/20_0family_underscore.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/20_0family_underscore.md +++ b/tests/results/test_examples/20_0family_underscore.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/20_0multi_family.md b/tests/results/test_examples/20_0multi_family.md index e67f959..92c5916 100644 --- a/tests/results/test_examples/20_0multi_family.md +++ b/tests/results/test_examples/20_0multi_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/20_0multi_family_basic.md b/tests/results/test_examples/20_0multi_family_basic.md index 5230b3f..156b32d 100644 --- a/tests/results/test_examples/20_0multi_family_basic.md +++ b/tests/results/test_examples/20_0multi_family_basic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/20_0multi_family_expert.md b/tests/results/test_examples/20_0multi_family_expert.md index e67f959..92c5916 100644 --- a/tests/results/test_examples/20_0multi_family_expert.md +++ b/tests/results/test_examples/20_0multi_family_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/20_0multi_family_order.md b/tests/results/test_examples/20_0multi_family_order.md index 684c567..5999f70 100644 --- a/tests/results/test_examples/20_0multi_family_order.md +++ b/tests/results/test_examples/20_0multi_family_order.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/20_0validators_differ_redefine.md b/tests/results/test_examples/20_0validators_differ_redefine.md index 4e46fb7..fed18ce 100644 --- a/tests/results/test_examples/20_0validators_differ_redefine.md +++ b/tests/results/test_examples/20_0validators_differ_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/20_1empty_subfamily.md b/tests/results/test_examples/20_1empty_subfamily.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/20_1empty_subfamily.md +++ b/tests/results/test_examples/20_1empty_subfamily.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/20_9default_information_parent.md b/tests/results/test_examples/20_9default_information_parent.md index 41435b3..9b7e43a 100644 --- a/tests/results/test_examples/20_9default_information_parent.md +++ b/tests/results/test_examples/20_9default_information_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/20_9family_absolute.md b/tests/results/test_examples/20_9family_absolute.md index 040ac3c..ec885b2 100644 --- a/tests/results/test_examples/20_9family_absolute.md +++ b/tests/results/test_examples/20_9family_absolute.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/24_0family_hidden_condition_sub_family.md b/tests/results/test_examples/24_0family_hidden_condition_sub_family.md index 2c3f4b3..f867797 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test_examples/24_0family_hidden_condition_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.md index ff92145..b634aed 100644 --- a/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.md +++ b/tests/results/test_examples/24_0family_hidden_condition_variable_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.md index d7debc9..4e1397c 100644 --- a/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test_examples/24_0family_hidden_param_condition_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/24_0family_mandatory_condition.md b/tests/results/test_examples/24_0family_mandatory_condition.md index 3425851..580c2e7 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition.md +++ b/tests/results/test_examples/24_0family_mandatory_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/24_0family_mandatory_condition_variable.md b/tests/results/test_examples/24_0family_mandatory_condition_variable.md index de1bfe8..eb5d066 100644 --- a/tests/results/test_examples/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_examples/24_0family_mandatory_condition_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/24_7validators_variable_optional.md b/tests/results/test_examples/24_7validators_variable_optional.md index 887f0fe..726fab8 100644 --- a/tests/results/test_examples/24_7validators_variable_optional.md +++ b/tests/results/test_examples/24_7validators_variable_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/24_family_disabled_var_hidden.md b/tests/results/test_examples/24_family_disabled_var_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/24_family_disabled_var_hidden.md +++ b/tests/results/test_examples/24_family_disabled_var_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/40_0leadership.md b/tests/results/test_examples/40_0leadership.md index abe8434..43c3034 100644 --- a/tests/results/test_examples/40_0leadership.md +++ b/tests/results/test_examples/40_0leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_0leadership_diff_name.md b/tests/results/test_examples/40_0leadership_diff_name.md index 41e3970..73d86e1 100644 --- a/tests/results/test_examples/40_0leadership_diff_name.md +++ b/tests/results/test_examples/40_0leadership_diff_name.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_0leadership_empty.md b/tests/results/test_examples/40_0leadership_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/40_0leadership_empty.md +++ b/tests/results/test_examples/40_0leadership_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/40_0leadership_follower_default_calculation.md b/tests/results/test_examples/40_0leadership_follower_default_calculation.md index 9161146..b534d8e 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_examples/40_0leadership_follower_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_0leadership_follower_default_value.md b/tests/results/test_examples/40_0leadership_follower_default_value.md index e2751a1..f73351d 100644 --- a/tests/results/test_examples/40_0leadership_follower_default_value.md +++ b/tests/results/test_examples/40_0leadership_follower_default_value.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_0leadership_leader_not_multi.md b/tests/results/test_examples/40_0leadership_leader_not_multi.md index 733a7c8..0ebf7c4 100644 --- a/tests/results/test_examples/40_0leadership_leader_not_multi.md +++ b/tests/results/test_examples/40_0leadership_leader_not_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_1leadership_append_follower.md b/tests/results/test_examples/40_1leadership_append_follower.md index e1b9675..dd5cdf5 100644 --- a/tests/results/test_examples/40_1leadership_append_follower.md +++ b/tests/results/test_examples/40_1leadership_append_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_6leadership_follower_multi.md b/tests/results/test_examples/40_6leadership_follower_multi.md index bb4bf61..3b77208 100644 --- a/tests/results/test_examples/40_6leadership_follower_multi.md +++ b/tests/results/test_examples/40_6leadership_follower_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_8calculation_boolean.md b/tests/results/test_examples/40_8calculation_boolean.md index 3099733..4f29a15 100644 --- a/tests/results/test_examples/40_8calculation_boolean.md +++ b/tests/results/test_examples/40_8calculation_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_8calculation_multi_variable.md b/tests/results/test_examples/40_8calculation_multi_variable.md index 7fa691c..ed6df73 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable.md +++ b/tests/results/test_examples/40_8calculation_multi_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent.md b/tests/results/test_examples/40_8calculation_multi_variable_parent.md index 0b18136..81f82b0 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_8calculation_multi_variable_parent2.md b/tests/results/test_examples/40_8calculation_multi_variable_parent2.md index 7f62f0d..651dd94 100644 --- a/tests/results/test_examples/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_examples/40_8calculation_multi_variable_parent2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.md index f153846..d67111d 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.md index f153846..d67111d 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-follower.md b/tests/results/test_examples/40_9leadership-calculation-outside-follower.md index d95a00d..f43875e 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.md index 601e4cd..0dd20ad 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.md index dcc5189..1beb71f 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/40_9leadership-calculation-outside-leader.md b/tests/results/test_examples/40_9leadership-calculation-outside-leader.md index 3c3e99f..3a63db5 100644 --- a/tests/results/test_examples/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_examples/40_9leadership-calculation-outside-leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/41_0choice_leader.md b/tests/results/test_examples/41_0choice_leader.md index 72222a7..1c00cf5 100644 --- a/tests/results/test_examples/41_0choice_leader.md +++ b/tests/results/test_examples/41_0choice_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/44_0leadership_hidden.md b/tests/results/test_examples/44_0leadership_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/44_0leadership_hidden.md +++ b/tests/results/test_examples/44_0leadership_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/44_0leadership_leader_hidden.md b/tests/results/test_examples/44_0leadership_leader_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/44_0leadership_leader_hidden.md +++ b/tests/results/test_examples/44_0leadership_leader_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/44_1leadership_append_hidden_follower.md b/tests/results/test_examples/44_1leadership_append_hidden_follower.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/44_1leadership_append_hidden_follower.md +++ b/tests/results/test_examples/44_1leadership_append_hidden_follower.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/44_4leadership_mandatory.md b/tests/results/test_examples/44_4leadership_mandatory.md index b3a5450..bfc6c8f 100644 --- a/tests/results/test_examples/44_4leadership_mandatory.md +++ b/tests/results/test_examples/44_4leadership_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/44_4leadership_mandatory_follower.md b/tests/results/test_examples/44_4leadership_mandatory_follower.md index cbd3b5c..f903806 100644 --- a/tests/results/test_examples/44_4leadership_mandatory_follower.md +++ b/tests/results/test_examples/44_4leadership_mandatory_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.md b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.md index 6e329df..e2efe43 100644 --- a/tests/results/test_examples/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_examples/44_5leadership_leader_hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.md b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.md index 9288eac..9995b06 100644 --- a/tests/results/test_examples/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_examples/44_6leadership_follower_disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic.md b/tests/results/test_examples/60_0family_dynamic.md index 8e702f3..1ba2e66 100644 --- a/tests/results/test_examples/60_0family_dynamic.md +++ b/tests/results/test_examples/60_0family_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_1_1.md b/tests/results/test_examples/60_0family_dynamic_1_1.md index 6e67de8..7c5f502 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1.md +++ b/tests/results/test_examples/60_0family_dynamic_1_1.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_1_1_empty.md b/tests/results/test_examples/60_0family_dynamic_1_1_empty.md index 6e67de8..7c5f502 100644 --- a/tests/results/test_examples/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test_examples/60_0family_dynamic_1_1_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_empty.md b/tests/results/test_examples/60_0family_dynamic_empty.md index ab82548..7df7dc7 100644 --- a/tests/results/test_examples/60_0family_dynamic_empty.md +++ b/tests/results/test_examples/60_0family_dynamic_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_forbidden_char.md b/tests/results/test_examples/60_0family_dynamic_forbidden_char.md new file mode 100644 index 0000000..3f99270 --- /dev/null +++ b/tests/results/test_examples/60_0family_dynamic_forbidden_char.md @@ -0,0 +1,14 @@ +# Example with all variables modifiable + +```yaml +--- +var: + - val.1 + - val.2 +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.md b/tests/results/test_examples/60_0family_dynamic_no_description.md index 8e702f3..1ba2e66 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description.md +++ b/tests/results/test_examples/60_0family_dynamic_no_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_no_description_empty.md b/tests/results/test_examples/60_0family_dynamic_no_description_empty.md index 8e702f3..1ba2e66 100644 --- a/tests/results/test_examples/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test_examples/60_0family_dynamic_no_description_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_static.md b/tests/results/test_examples/60_0family_dynamic_static.md index 6625673..fd768aa 100644 --- a/tests/results/test_examples/60_0family_dynamic_static.md +++ b/tests/results/test_examples/60_0family_dynamic_static.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_test.md b/tests/results/test_examples/60_0family_dynamic_test.md index 3c344fa..ce2e358 100644 --- a/tests/results/test_examples/60_0family_dynamic_test.md +++ b/tests/results/test_examples/60_0family_dynamic_test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_variable_empty.md b/tests/results/test_examples/60_0family_dynamic_variable_empty.md index 144a82c..18cdf72 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix.md b/tests/results/test_examples/60_0family_dynamic_variable_suffix.md index e083f55..38a84d5 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.md index c1aca6c..e54812d 100644 --- a/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test_examples/60_0family_dynamic_variable_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_0family_empty.md b/tests/results/test_examples/60_0family_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/60_0family_empty.md +++ b/tests/results/test_examples/60_0family_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/60_0family_hidden.md b/tests/results/test_examples/60_0family_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_examples/60_0family_hidden.md +++ b/tests/results/test_examples/60_0family_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_examples/60_0family_mode.md b/tests/results/test_examples/60_0family_mode.md index 748a63f..b9d93ce 100644 --- a/tests/results/test_examples/60_0family_mode.md +++ b/tests/results/test_examples/60_0family_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_1family_dynamic_jinja.md b/tests/results/test_examples/60_1family_dynamic_jinja.md index f62157c..e814978 100644 --- a/tests/results/test_examples/60_1family_dynamic_jinja.md +++ b/tests/results/test_examples/60_1family_dynamic_jinja.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.md index 32c435a..ee269a5 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.md index 9024071..dd031d0 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index 9024071..dd031d0 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md index 32c435a..ee269a5 100644 --- a/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ b/tests/results/test_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc.md b/tests/results/test_examples/60_2family_dynamic_outside_calc.md index 72caea7..75071c9 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.md index 72caea7..75071c9 100644 --- a/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test_examples/60_2family_dynamic_outside_calc_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.md index a37a9b6..c716a8d 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.md index a37a9b6..c716a8d 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.md index a37a9b6..c716a8d 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.md index a37a9b6..c716a8d 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_suffix_param_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable.md b/tests/results/test_examples/60_5family_dynamic_calc_variable.md index c28bf99..6173263 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.md index c28bf99..6173263 100644 --- a/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test_examples/60_5family_dynamic_calc_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.md b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.md index cece1d1..daa43f2 100644 --- a/tests/results/test_examples/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_examples/60_5family_dynamic_hidden_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.md index 8027097..dce02c5 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.md index 8027097..dce02c5 100644 --- a/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.md +++ b/tests/results/test_examples/60_5family_dynamic_variable_outside_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_6family_dynamic_leadership.md b/tests/results/test_examples/60_6family_dynamic_leadership.md index 0b4c812..33183ef 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership.md +++ b/tests/results/test_examples/60_6family_dynamic_leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_6family_dynamic_leadership_empty.md b/tests/results/test_examples/60_6family_dynamic_leadership_empty.md index 0b4c812..33183ef 100644 --- a/tests/results/test_examples/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_examples/60_6family_dynamic_leadership_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_examples/60_9family_dynamic_calc_both.md b/tests/results/test_examples/60_9family_dynamic_calc_both.md index ee868d5..24f808e 100644 --- a/tests/results/test_examples/60_9family_dynamic_calc_both.md +++ b/tests/results/test_examples/60_9family_dynamic_calc_both.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_examples/68_0family_leadership_mode.md b/tests/results/test_examples/68_0family_leadership_mode.md index abe8434..43c3034 100644 --- a/tests/results/test_examples/68_0family_leadership_mode.md +++ b/tests/results/test_examples/68_0family_leadership_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace/00_0empty.md b/tests/results/test_namespace/00_0empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/00_0empty.md +++ b/tests/results/test_namespace/00_0empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/00_0version_underscore.md b/tests/results/test_namespace/00_0version_underscore.md index 644a2f7..3ea5d72 100644 --- a/tests/results/test_namespace/00_0version_underscore.md +++ b/tests/results/test_namespace/00_0version_underscore.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_1empty_variable.md b/tests/results/test_namespace/00_1empty_variable.md index 0c46b56..a514410 100644 --- a/tests/results/test_namespace/00_1empty_variable.md +++ b/tests/results/test_namespace/00_1empty_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_2default_calculated.md b/tests/results/test_namespace/00_2default_calculated.md index 6713953..5f7a9b6 100644 --- a/tests/results/test_namespace/00_2default_calculated.md +++ b/tests/results/test_namespace/00_2default_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 7b6d4b5..8900ee0 100644 --- a/tests/results/test_namespace/00_2default_calculated_multi.md +++ b/tests/results/test_namespace/00_2default_calculated_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 984e1bd..f03f592 100644 --- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_4load_subfolder.md b/tests/results/test_namespace/00_4load_subfolder.md index acb4017..2a803a4 100644 --- a/tests/results/test_namespace/00_4load_subfolder.md +++ b/tests/results/test_namespace/00_4load_subfolder.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_5load_notype.md b/tests/results/test_namespace/00_5load_notype.md index d47e113..f7333c2 100644 --- a/tests/results/test_namespace/00_5load_notype.md +++ b/tests/results/test_namespace/00_5load_notype.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6boolean.md b/tests/results/test_namespace/00_6boolean.md index cd6bd15..58faadc 100644 --- a/tests/results/test_namespace/00_6boolean.md +++ b/tests/results/test_namespace/00_6boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 18b4ce3..0ecb7be 100644 --- a/tests/results/test_namespace/00_6boolean_no_mandatory.md +++ b/tests/results/test_namespace/00_6boolean_no_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6choice.md b/tests/results/test_namespace/00_6choice.md index 1ce624e..00f4511 100644 --- a/tests/results/test_namespace/00_6choice.md +++ b/tests/results/test_namespace/00_6choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6choice_calculation.md b/tests/results/test_namespace/00_6choice_calculation.md index 1d7d758..fc3986e 100644 --- a/tests/results/test_namespace/00_6choice_calculation.md +++ b/tests/results/test_namespace/00_6choice_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6choice_variable.md b/tests/results/test_namespace/00_6choice_variable.md index 76dc3b7..f81699c 100644 --- a/tests/results/test_namespace/00_6choice_variable.md +++ b/tests/results/test_namespace/00_6choice_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6custom.md b/tests/results/test_namespace/00_6custom.md index 6103eeb..83ed791 100644 --- a/tests/results/test_namespace/00_6custom.md +++ b/tests/results/test_namespace/00_6custom.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6domainname.md b/tests/results/test_namespace/00_6domainname.md index 99cd645..267b2e5 100644 --- a/tests/results/test_namespace/00_6domainname.md +++ b/tests/results/test_namespace/00_6domainname.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6domainname_params.md b/tests/results/test_namespace/00_6domainname_params.md index cd50ef5..53ed275 100644 --- a/tests/results/test_namespace/00_6domainname_params.md +++ b/tests/results/test_namespace/00_6domainname_params.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6float.md b/tests/results/test_namespace/00_6float.md index 7fd0f98..e6ae481 100644 --- a/tests/results/test_namespace/00_6float.md +++ b/tests/results/test_namespace/00_6float.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6number.md b/tests/results/test_namespace/00_6number.md index e6182be..790f916 100644 --- a/tests/results/test_namespace/00_6number.md +++ b/tests/results/test_namespace/00_6number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6port.adoc b/tests/results/test_namespace/00_6port.adoc index 82b58b2..e0804f4 100644 --- a/tests/results/test_namespace/00_6port.adoc +++ b/tests/results/test_namespace/00_6port.adoc @@ -10,9 +10,9 @@ A port variable. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed | **rougail.variable2** + @@ -20,9 +20,9 @@ A port variable. + A port variable with default value. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed **Default**: 8080 | @@ -32,9 +32,9 @@ A port variable with default value. + A port variable with integer default value. + **Validators**: -* ports 1 to 1023 are allowed -* ports 1024 to 49151 are allowed -* ports greater than 49152 are allowed +* well-known ports (1 to 1023) are allowed +* registred ports (1024 to 49151) are allowed +* private ports (greater than 49152) are allowed **Default**: 8080 |==== diff --git a/tests/results/test_namespace/00_6port.json b/tests/results/test_namespace/00_6port.json index 7245aee..722a13d 100644 --- a/tests/results/test_namespace/00_6port.json +++ b/tests/results/test_namespace/00_6port.json @@ -34,9 +34,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "rougail.variable1" @@ -66,9 +66,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "rougail.variable2" @@ -98,9 +98,9 @@ } ], "validators": [ - "ports 1 to 1023 are allowed", - "ports 1024 to 49151 are allowed", - "ports greater than 49152 are allowed" + "well-known ports (1 to 1023) are allowed", + "registred ports (1024 to 49151) are allowed", + "private ports (greater than 49152) are allowed" ], "paths": [ "rougail.variable3" diff --git a/tests/results/test_namespace/00_6port.md b/tests/results/test_namespace/00_6port.md index 02bd8f1..ede1006 100644 --- a/tests/results/test_namespace/00_6port.md +++ b/tests/results/test_namespace/00_6port.md @@ -1,12 +1,8 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **rougail.variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed | -| **rougail.variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed<br/>**Default**: 8080 | -| **rougail.variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- ports 1 to 1023 are allowed<br/>- ports 1024 to 49151 are allowed<br/>- ports greater than 49152 are allowed<br/>**Default**: 8080 | +| **rougail.variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed | +| **rougail.variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 | +| **rougail.variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 | diff --git a/tests/results/test_namespace/00_6port.sh b/tests/results/test_namespace/00_6port.sh index 3cfefeb..f46bc4c 100644 --- a/tests/results/test_namespace/00_6port.sh +++ b/tests/results/test_namespace/00_6port.sh @@ -5,24 +5,24 @@ - [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [1mrougail.variable1[0m - [1;36;40mport[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A port variable. + [1;36;40mport[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A port variable. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1;33m [0m| | [1mrougail.variable2[0m [1;36;40mport[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;33m [0m| A port variable with default value. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed [1mDefault[0m: 8080 +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1mDefault[0m: 8080 [1;33m [0m| | [1mrougail.variable3[0m [1;36;40mport[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;33m [0m| A port variable with integer default value. [1mValidators[0m: -[1;33m • [0mports 1 to 1023 are allowed -[1;33m • [0mports 1024 to 49151 are allowed -[1;33m • [0mports greater than 49152 are allowed [1mDefault[0m: 8080 +[1;33m • [0mwell-known ports (1 to 1023) are allowed +[1;33m • [0mregistred ports (1024 to 49151) are allowed +[1;33m • [0mprivate ports (greater than 49152) are allowed [1mDefault[0m: 8080 [1;33m [0m| diff --git a/tests/results/test_namespace/00_6regexp.md b/tests/results/test_namespace/00_6regexp.md index f06abb8..feea5e8 100644 --- a/tests/results/test_namespace/00_6regexp.md +++ b/tests/results/test_namespace/00_6regexp.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6secret.md b/tests/results/test_namespace/00_6secret.md index cdb1fbe..6f72393 100644 --- a/tests/results/test_namespace/00_6secret.md +++ b/tests/results/test_namespace/00_6secret.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_6secret_param.adoc b/tests/results/test_namespace/00_6secret_param.adoc new file mode 100644 index 0000000..bd609c0 --- /dev/null +++ b/tests/results/test_namespace/00_6secret_param.adoc @@ -0,0 +1,24 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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. + +**Validators**: + +* maximum length for the secret is 10 characters +* forbidden characters are "$" and "^" + +**Default**: value +|==== + diff --git a/tests/results/test_namespace/00_6secret_param.json b/tests/results/test_namespace/00_6secret_param.json new file mode 100644 index 0000000..ae80755 --- /dev/null +++ b/tests/results/test_namespace/00_6secret_param.json @@ -0,0 +1,82 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.secret1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "secret" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "validators": [ + "minimum length for the secret is 10 characters" + ], + "paths": [ + "rougail.secret1" + ], + "names": [ + "secret1" + ], + "descriptions": [ + "The first variable." + ] + }, + "rougail.secret2": { + "type": "variable", + "default": "value", + "properties": [ + { + "type": "type", + "name": "secret" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "validators": [ + "maximum length for the secret is 10 characters", + "forbidden characters are \"$\" and \"^\"" + ], + "paths": [ + "rougail.secret2" + ], + "names": [ + "secret2" + ], + "descriptions": [ + "The second variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/00_6secret_param.md b/tests/results/test_namespace/00_6secret_param.md new file mode 100644 index 0000000..177706c --- /dev/null +++ b/tests/results/test_namespace/00_6secret_param.md @@ -0,0 +1,7 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.secret1**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters | +| **rougail.secret2**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters are "$" and "^"<br/>**Default**: value | + diff --git a/tests/results/test_namespace/00_6secret_param.sh b/tests/results/test_namespace/00_6secret_param.sh new file mode 100644 index 0000000..35ddbc6 --- /dev/null +++ b/tests/results/test_namespace/00_6secret_param.sh @@ -0,0 +1,23 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.secret1[0m + [1;36;40msecret[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first variable. + [1mValidator[0m: minimum length for the + secret is 10 characters + [1mrougail.secret2[0m + [1;36;40msecret[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m The second variable. + [1mValidators[0m: + + +[1;33m • [0mmaximum length for the secret is 10 characters +[1;33m • [0mforbidden characters are "$" and "^" [1mDefault[0m: value +[1;33m [0m| diff --git a/tests/results/test_namespace/00_6string.md b/tests/results/test_namespace/00_6string.md index 7f09867..f7ab70f 100644 --- a/tests/results/test_namespace/00_6string.md +++ b/tests/results/test_namespace/00_6string.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_7choice_quote.md b/tests/results/test_namespace/00_7choice_quote.md index fbbec0f..9c86b10 100644 --- a/tests/results/test_namespace/00_7choice_quote.md +++ b/tests/results/test_namespace/00_7choice_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_7help.adoc b/tests/results/test_namespace/00_7help.adoc new file mode 100644 index 0000000..c8393fe --- /dev/null +++ b/tests/results/test_namespace/00_7help.adoc @@ -0,0 +1,25 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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. + +Multi line +Help +With useful information. +|==== + diff --git a/tests/results/test_namespace/00_7help.json b/tests/results/test_namespace/00_7help.json new file mode 100644 index 0000000..d0c765e --- /dev/null +++ b/tests/results/test_namespace/00_7help.json @@ -0,0 +1,80 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.var1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "rougail.var1" + ], + "names": [ + "var1" + ], + "help": [ + "Multi line\n\nHelp\n\nWith useful information." + ], + "descriptions": [ + "The first variable." + ] + }, + "rougail.var2": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "rougail.var2" + ], + "names": [ + "var2" + ], + "help": [ + "Multi line\nHelp\nWith useful information." + ], + "descriptions": [ + "The second variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/00_7help.md b/tests/results/test_namespace/00_7help.md new file mode 100644 index 0000000..c0a5bff --- /dev/null +++ b/tests/results/test_namespace/00_7help.md @@ -0,0 +1,7 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Multi line<br/><br/>Help<br/><br/>With useful information. | +| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Multi line<br/>Help<br/>With useful information. | + diff --git a/tests/results/test_namespace/00_7help.sh b/tests/results/test_namespace/00_7help.sh new file mode 100644 index 0000000..6e3dc41 --- /dev/null +++ b/tests/results/test_namespace/00_7help.sh @@ -0,0 +1,26 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.var1[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first variable. + Multi line + Help + With useful information. + [1mrougail.var2[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The second variable. + Multi line + Help + With useful information. + diff --git a/tests/results/test_namespace/00_7help_quote.md b/tests/results/test_namespace/00_7help_quote.md index df8f6ec..5caae62 100644 --- a/tests/results/test_namespace/00_7help_quote.md +++ b/tests/results/test_namespace/00_7help_quote.md @@ -1,11 +1,7 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Message with '. | -| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Message with ". | +| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Message with '. | +| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Message with ". | diff --git a/tests/results/test_namespace/00_7help_sup.adoc b/tests/results/test_namespace/00_7help_sup.adoc new file mode 100644 index 0000000..074e868 --- /dev/null +++ b/tests/results/test_namespace/00_7help_sup.adoc @@ -0,0 +1,25 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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>. + +Multi line +<Help> +With useful information. +|==== + diff --git a/tests/results/test_namespace/00_7help_sup.json b/tests/results/test_namespace/00_7help_sup.json new file mode 100644 index 0000000..cb370d7 --- /dev/null +++ b/tests/results/test_namespace/00_7help_sup.json @@ -0,0 +1,80 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.var1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "rougail.var1" + ], + "names": [ + "var1" + ], + "help": [ + "Multi line\n\n<Help>\n\nWith useful information." + ], + "descriptions": [ + "The first <variable>." + ] + }, + "rougail.var2": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "rougail.var2" + ], + "names": [ + "var2" + ], + "help": [ + "Multi line\n<Help>\nWith useful information." + ], + "descriptions": [ + "The second <variable>." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/00_7help_sup.md b/tests/results/test_namespace/00_7help_sup.md new file mode 100644 index 0000000..619a34a --- /dev/null +++ b/tests/results/test_namespace/00_7help_sup.md @@ -0,0 +1,7 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first <variable>.<br/>Multi line<br/><br/><Help><br/><br/>With useful information. | +| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second <variable>.<br/>Multi line<br/><Help><br/>With useful information. | + diff --git a/tests/results/test_namespace/00_7help_sup.sh b/tests/results/test_namespace/00_7help_sup.sh new file mode 100644 index 0000000..7e6efcc --- /dev/null +++ b/tests/results/test_namespace/00_7help_sup.sh @@ -0,0 +1,26 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.var1[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The first <variable>. + Multi line + <Help> + With useful information. + [1mrougail.var2[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m The second <variable>. + Multi line + <Help> + With useful information. + diff --git a/tests/results/test_namespace/00_7value_doublequote.md b/tests/results/test_namespace/00_7value_doublequote.md index 673a6b6..65bf918 100644 --- a/tests/results/test_namespace/00_7value_doublequote.md +++ b/tests/results/test_namespace/00_7value_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_7value_doublequote2.md b/tests/results/test_namespace/00_7value_doublequote2.md index 97b70da..53a289e 100644 --- a/tests/results/test_namespace/00_7value_doublequote2.md +++ b/tests/results/test_namespace/00_7value_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_7value_doublequote3.md b/tests/results/test_namespace/00_7value_doublequote3.md index d4d7e65..cbce1b8 100644 --- a/tests/results/test_namespace/00_7value_doublequote3.md +++ b/tests/results/test_namespace/00_7value_doublequote3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_7value_quote.md b/tests/results/test_namespace/00_7value_quote.md index 68eff9f..6692d55 100644 --- a/tests/results/test_namespace/00_7value_quote.md +++ b/tests/results/test_namespace/00_7value_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_8calculation_information.md b/tests/results/test_namespace/00_8calculation_information.md index 7e9bb25..b9d7b4e 100644 --- a/tests/results/test_namespace/00_8calculation_information.md +++ b/tests/results/test_namespace/00_8calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_8calculation_namespace.adoc b/tests/results/test_namespace/00_8calculation_namespace.adoc new file mode 100644 index 0000000..8e2c1f3 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_namespace.adoc @@ -0,0 +1,13 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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.json b/tests/results/test_namespace/00_8calculation_namespace.json new file mode 100644 index 0000000..e29c9a1 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_namespace.json @@ -0,0 +1,45 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ] + }, + "children": { + "rougail.variable": { + "type": "variable", + "default": "the value of the namespace.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + } + ], + "paths": [ + "rougail.variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/00_8calculation_namespace.md b/tests/results/test_namespace/00_8calculation_namespace.md new file mode 100644 index 0000000..8ecc6ea --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_namespace.md @@ -0,0 +1,6 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: the value of the namespace. | + diff --git a/tests/results/test_namespace/00_8calculation_namespace.sh b/tests/results/test_namespace/00_8calculation_namespace.sh new file mode 100644 index 0000000..e12a3a2 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_namespace.sh @@ -0,0 +1,13 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.variable[0m + [1;36;40mstring[0m [1;36;40mstandard[0m A variable. + [1mDefault[0m: the value of the namespace. + diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.adoc b/tests/results/test_namespace/00_8calculation_param_namespace.adoc new file mode 100644 index 0000000..7a262a6 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_param_namespace.adoc @@ -0,0 +1,13 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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.json b/tests/results/test_namespace/00_8calculation_param_namespace.json new file mode 100644 index 0000000..ebf4aeb --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_param_namespace.json @@ -0,0 +1,45 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ] + }, + "children": { + "rougail.variable": { + "type": "variable", + "default": "depends on a calculation.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + } + ], + "paths": [ + "rougail.variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.md b/tests/results/test_namespace/00_8calculation_param_namespace.md new file mode 100644 index 0000000..52fae15 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_param_namespace.md @@ -0,0 +1,6 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: depends on a calculation. | + diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.sh b/tests/results/test_namespace/00_8calculation_param_namespace.sh new file mode 100644 index 0000000..74c1cb3 --- /dev/null +++ b/tests/results/test_namespace/00_8calculation_param_namespace.sh @@ -0,0 +1,13 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.variable[0m + [1;36;40mstring[0m [1;36;40mstandard[0m A variable. + [1mDefault[0m: depends on a calculation. + diff --git a/tests/results/test_namespace/00_8test.md b/tests/results/test_namespace/00_8test.md index 50bc77d..543f2c0 100644 --- a/tests/results/test_namespace/00_8test.md +++ b/tests/results/test_namespace/00_8test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 d838db7..cc18e7c 100644 --- a/tests/results/test_namespace/00_9choice_variable_multi.md +++ b/tests/results/test_namespace/00_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9choice_variables.md b/tests/results/test_namespace/00_9choice_variables.md index 9e7a602..3a24878 100644 --- a/tests/results/test_namespace/00_9choice_variables.md +++ b/tests/results/test_namespace/00_9choice_variables.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9default_calculation.md b/tests/results/test_namespace/00_9default_calculation.md index c14be84..cf6f1c4 100644 --- a/tests/results/test_namespace/00_9default_calculation.md +++ b/tests/results/test_namespace/00_9default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 41cef80..78e66f7 100644 --- a/tests/results/test_namespace/00_9default_calculation_information.md +++ b/tests/results/test_namespace/00_9default_calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 961e2a2..a596ce1 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 d7568f2..c00f164 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 d7568f2..c00f164 100644 --- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 bb57eb8..3c62de5 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 68e624d..4f7597a 100644 --- a/tests/results/test_namespace/00_9default_calculation_optional_exists.md +++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 c3d983c..6714b35 100644 --- a/tests/results/test_namespace/00_9default_calculation_param_optional.md +++ b/tests/results/test_namespace/00_9default_calculation_param_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 fda791f..7e25117 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable.md +++ b/tests/results/test_namespace/00_9default_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 fda791f..7e25117 100644 --- a/tests/results/test_namespace/00_9default_information_other_variable2.md +++ b/tests/results/test_namespace/00_9default_information_other_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9default_integer.md b/tests/results/test_namespace/00_9default_integer.md index 79242b4..96d9174 100644 --- a/tests/results/test_namespace/00_9default_integer.md +++ b/tests/results/test_namespace/00_9default_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9extra.md b/tests/results/test_namespace/00_9extra.md index 6439eb2..f78ede9 100644 --- a/tests/results/test_namespace/00_9extra.md +++ b/tests/results/test_namespace/00_9extra.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9extra_calculation.md b/tests/results/test_namespace/00_9extra_calculation.md index ea9cb9f..338d922 100644 --- a/tests/results/test_namespace/00_9extra_calculation.md +++ b/tests/results/test_namespace/00_9extra_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/00_9extra_ouside.md b/tests/results/test_namespace/00_9extra_ouside.md index 7c96b7d..b61e547 100644 --- a/tests/results/test_namespace/00_9extra_ouside.md +++ b/tests/results/test_namespace/00_9extra_ouside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6boolean_multi.md b/tests/results/test_namespace/01_6boolean_multi.md index d355628..3a06794 100644 --- a/tests/results/test_namespace/01_6boolean_multi.md +++ b/tests/results/test_namespace/01_6boolean_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6custom_multi.md b/tests/results/test_namespace/01_6custom_multi.md index a331820..e9dd185 100644 --- a/tests/results/test_namespace/01_6custom_multi.md +++ b/tests/results/test_namespace/01_6custom_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6float_multi.md b/tests/results/test_namespace/01_6float_multi.md index 1a89de0..08421cd 100644 --- a/tests/results/test_namespace/01_6float_multi.md +++ b/tests/results/test_namespace/01_6float_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6number_multi.md b/tests/results/test_namespace/01_6number_multi.md index e5b222b..6620c28 100644 --- a/tests/results/test_namespace/01_6number_multi.md +++ b/tests/results/test_namespace/01_6number_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6string_empty.md b/tests/results/test_namespace/01_6string_empty.md index c0e40fb..9915c6f 100644 --- a/tests/results/test_namespace/01_6string_empty.md +++ b/tests/results/test_namespace/01_6string_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/01_6string_multi.md b/tests/results/test_namespace/01_6string_multi.md index 5934e94..d075d33 100644 --- a/tests/results/test_namespace/01_6string_multi.md +++ b/tests/results/test_namespace/01_6string_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 b6c3f41..be63737 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 018bf7a..bfb3018 100644 --- a/tests/results/test_namespace/01_7value_multi_doublequote2.md +++ b/tests/results/test_namespace/01_7value_multi_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 453f5a3..fe32881 100644 --- a/tests/results/test_namespace/01_7value_multi_quote.md +++ b/tests/results/test_namespace/01_7value_multi_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 6f2f4af..9d431c9 100644 --- a/tests/results/test_namespace/01_8calculation_information_multi.md +++ b/tests/results/test_namespace/01_8calculation_information_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 f77584e..dd49843 100644 --- a/tests/results/test_namespace/01_9choice_variable_multi.md +++ b/tests/results/test_namespace/01_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_0type_param.md b/tests/results/test_namespace/04_0type_param.md index 7f4b7f2..7198930 100644 --- a/tests/results/test_namespace/04_0type_param.md +++ b/tests/results/test_namespace/04_0type_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_1auto_save.md b/tests/results/test_namespace/04_1auto_save.md index 49a58f0..66c41bf 100644 --- a/tests/results/test_namespace/04_1auto_save.md +++ b/tests/results/test_namespace/04_1auto_save.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 6b1aad0..03a974a 100644 --- a/tests/results/test_namespace/04_1auto_save_and_calculated.md +++ b/tests/results/test_namespace/04_1auto_save_and_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 3dde1c0..c4782eb 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_1auto_save_and_hidden.md b/tests/results/test_namespace/04_1auto_save_and_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/04_1auto_save_and_hidden.md +++ b/tests/results/test_namespace/04_1auto_save_and_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.md b/tests/results/test_namespace/04_1default_calculation_hidden.md index 1a60bab..dbcdb60 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 1a60bab..dbcdb60 100644 --- a/tests/results/test_namespace/04_1default_calculation_hidden_2.md +++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5disabled_calculation.md b/tests/results/test_namespace/04_5disabled_calculation.md index a54f22c..611c3cc 100644 --- a/tests/results/test_namespace/04_5disabled_calculation.md +++ b/tests/results/test_namespace/04_5disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 674dba4..f6ed142 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_default.md +++ b/tests/results/test_namespace/04_5disabled_calculation_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 6120e31..49ea48e 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 fe52513..ab110d9 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_optional.md +++ b/tests/results/test_namespace/04_5disabled_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 0cda2f6..d148dbe 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 8c3fb08..b204931 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable2.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 07eb0e9..8f162f8 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable3.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 30eb439..bf31c59 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable4.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 cf4ebeb..1734f17 100644 --- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.adoc new file mode 100644 index 0000000..ac72a93 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.adoc @@ -0,0 +1,18 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | +A condition. +| + +**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_multi2.json b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.json new file mode 100644 index 0000000..d6302e7 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.json @@ -0,0 +1,95 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.condition": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.condition" + ], + "names": [ + "condition" + ], + "descriptions": [ + "A condition." + ] + }, + "rougail.variable": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "disabled", + "annotation": "when the variable \"rougail.condition\" has the value \"true\"." + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.md new file mode 100644 index 0000000..d25239e --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.md @@ -0,0 +1,7 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A condition. | +| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "rougail.condition" has the value "true". | + diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.sh new file mode 100644 index 0000000..ff80b73 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi2.sh @@ -0,0 +1,20 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.condition[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;36;40munique[0m A condition. + [1;36;40mmultiple[0m + [1mrougail.variable[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;3;36;40mdisabled[0m A variable. + [1;36;40munique[0m [1;36;40mmultiple[0m + [1mDisabled[0m: when the variable + "rougail.condition" has the value + "true". + diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.adoc b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.adoc new file mode 100644 index 0000000..20b7903 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.adoc @@ -0,0 +1,22 @@ +== Variables for "Rougail" + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**rougail.condition** + +`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | +A condition. + +**Default**: + +* val1 +* val2 +| + +**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_multi3.json b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.json new file mode 100644 index 0000000..9ee60a4 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.json @@ -0,0 +1,99 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.condition": { + "type": "variable", + "default": [ + "val1", + "val2" + ], + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.condition" + ], + "names": [ + "condition" + ], + "descriptions": [ + "A condition." + ] + }, + "rougail.variable": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "disabled", + "annotation": "when the variable \"rougail.condition\" has the value \"true\"." + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.variable" + ], + "names": [ + "variable" + ], + "descriptions": [ + "A variable." + ] + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.md new file mode 100644 index 0000000..9655114 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.md @@ -0,0 +1,7 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A condition.<br/>**Default**: <br/>- val1<br/>- val2 | +| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "rougail.condition" has the value "true". | + diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.sh new file mode 100644 index 0000000..9ff4ad6 --- /dev/null +++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi3.sh @@ -0,0 +1,21 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.condition[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;36;40munique[0m A condition. + [1;36;40mmultiple[0m + [1mDefault[0m: + + +[1;33m • [0mval1 +[1;33m • [0mval2 +[1;33m [0m| | [1mrougail.variable[0m [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m [1;3;36;40mdisabled[0m [1;36;40munique[0m [1;36;40mmultiple[0m +[1;33m [0m| A variable. [1mDisabled[0m: when the variable "rougail.condition" has the value +[1;33m [0m"true". +[1;33m [0m| diff --git a/tests/results/test_namespace/04_5hidden_calculation.md b/tests/results/test_namespace/04_5hidden_calculation.md index 5987568..2b2c1ba 100644 --- a/tests/results/test_namespace/04_5hidden_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5hidden_calculation2.md b/tests/results/test_namespace/04_5hidden_calculation2.md index 82d6785..1346b9c 100644 --- a/tests/results/test_namespace/04_5hidden_calculation2.md +++ b/tests/results/test_namespace/04_5hidden_calculation2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 9600f3c..125b4e7 100644 --- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md +++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5validators.md b/tests/results/test_namespace/04_5validators.md index 0ff9cee..151671d 100644 --- a/tests/results/test_namespace/04_5validators.md +++ b/tests/results/test_namespace/04_5validators.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5validators_differ.md b/tests/results/test_namespace/04_5validators_differ.md index c54b136..694f8df 100644 --- a/tests/results/test_namespace/04_5validators_differ.md +++ b/tests/results/test_namespace/04_5validators_differ.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5validators_multi.md b/tests/results/test_namespace/04_5validators_multi.md index 2bc7ad2..46c7fbb 100644 --- a/tests/results/test_namespace/04_5validators_multi.md +++ b/tests/results/test_namespace/04_5validators_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/04_5validators_multi2.md b/tests/results/test_namespace/04_5validators_multi2.md index 60b44d4..35355e9 100644 --- a/tests/results/test_namespace/04_5validators_multi2.md +++ b/tests/results/test_namespace/04_5validators_multi2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 b3f0870..0a45742 100644 --- a/tests/results/test_namespace/05_0multi_not_uniq.md +++ b/tests/results/test_namespace/05_0multi_not_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/05_0multi_uniq.md b/tests/results/test_namespace/05_0multi_uniq.md index 71ebea9..b8493b6 100644 --- a/tests/results/test_namespace/05_0multi_uniq.md +++ b/tests/results/test_namespace/05_0multi_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 a2bffae..abcc0ae 100644 --- a/tests/results/test_namespace/12_1auto_save_expert.md +++ b/tests/results/test_namespace/12_1auto_save_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_0redefine_description.md b/tests/results/test_namespace/16_0redefine_description.md index b2064cd..26f98b0 100644 --- a/tests/results/test_namespace/16_0redefine_description.md +++ b/tests/results/test_namespace/16_0redefine_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_2family_redefine_calculation.md b/tests/results/test_namespace/16_2family_redefine_calculation.md index ea56f93..92295c8 100644 --- a/tests/results/test_namespace/16_2family_redefine_calculation.md +++ b/tests/results/test_namespace/16_2family_redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## rougail.family diff --git a/tests/results/test_namespace/16_2family_redefine_disabled.md b/tests/results/test_namespace/16_2family_redefine_disabled.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/16_2family_redefine_disabled.md +++ b/tests/results/test_namespace/16_2family_redefine_disabled.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/16_5exists_nonexists.md b/tests/results/test_namespace/16_5exists_nonexists.md index 617708b..a0c6ba7 100644 --- a/tests/results/test_namespace/16_5exists_nonexists.md +++ b/tests/results/test_namespace/16_5exists_nonexists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_5exists_redefine.md b/tests/results/test_namespace/16_5exists_redefine.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/16_5exists_redefine.md +++ b/tests/results/test_namespace/16_5exists_redefine.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/16_5redefine_calculation.md b/tests/results/test_namespace/16_5redefine_calculation.md index d142738..45b5ccf 100644 --- a/tests/results/test_namespace/16_5redefine_calculation.md +++ b/tests/results/test_namespace/16_5redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_5redefine_choice.md b/tests/results/test_namespace/16_5redefine_choice.md index 992e686..23db9f3 100644 --- a/tests/results/test_namespace/16_5redefine_choice.md +++ b/tests/results/test_namespace/16_5redefine_choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_5redefine_default.md b/tests/results/test_namespace/16_5redefine_default.md index 21d9760..6dc0e22 100644 --- a/tests/results/test_namespace/16_5redefine_default.md +++ b/tests/results/test_namespace/16_5redefine_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 1c87cae..d2168c6 100644 --- a/tests/results/test_namespace/16_5redefine_default_calculation.md +++ b/tests/results/test_namespace/16_5redefine_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_5redefine_family.md b/tests/results/test_namespace/16_5redefine_family.md index 0a5262f..04264df 100644 --- a/tests/results/test_namespace/16_5redefine_family.md +++ b/tests/results/test_namespace/16_5redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## new description diff --git a/tests/results/test_namespace/16_5redefine_help.md b/tests/results/test_namespace/16_5redefine_help.md index 43d5e54..71b6e48 100644 --- a/tests/results/test_namespace/16_5redefine_help.md +++ b/tests/results/test_namespace/16_5redefine_help.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/16_5redefine_hidden.md b/tests/results/test_namespace/16_5redefine_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/16_5redefine_hidden.md +++ b/tests/results/test_namespace/16_5redefine_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/16_5redefine_multi.md b/tests/results/test_namespace/16_5redefine_multi.md index 71ebea9..b8493b6 100644 --- a/tests/results/test_namespace/16_5redefine_multi.md +++ b/tests/results/test_namespace/16_5redefine_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 9da9b0f..107f3e8 100644 --- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_5test_redefine.md b/tests/results/test_namespace/16_5test_redefine.md index 06e8ce1..061704f 100644 --- a/tests/results/test_namespace/16_5test_redefine.md +++ b/tests/results/test_namespace/16_5test_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_6choice_redefine.md b/tests/results/test_namespace/16_6choice_redefine.md index d7db144..30652a6 100644 --- a/tests/results/test_namespace/16_6choice_redefine.md +++ b/tests/results/test_namespace/16_6choice_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/16_6exists_family.md b/tests/results/test_namespace/16_6exists_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/16_6exists_family.md +++ b/tests/results/test_namespace/16_6exists_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/16_6exists_redefine_family.md b/tests/results/test_namespace/16_6exists_redefine_family.md index b3a5032..be89433 100644 --- a/tests/results/test_namespace/16_6exists_redefine_family.md +++ b/tests/results/test_namespace/16_6exists_redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## new description diff --git a/tests/results/test_namespace/16exists_exists.md b/tests/results/test_namespace/16exists_exists.md index b1f0a6b..c393245 100644 --- a/tests/results/test_namespace/16exists_exists.md +++ b/tests/results/test_namespace/16exists_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/17_5redefine_leadership.md b/tests/results/test_namespace/17_5redefine_leadership.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/17_5redefine_leadership.md +++ b/tests/results/test_namespace/17_5redefine_leadership.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/20_0empty_family.md b/tests/results/test_namespace/20_0empty_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/20_0empty_family.md +++ b/tests/results/test_namespace/20_0empty_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/20_0family_append.md b/tests/results/test_namespace/20_0family_append.md index 9ed8b4b..3ebef3b 100644 --- a/tests/results/test_namespace/20_0family_append.md +++ b/tests/results/test_namespace/20_0family_append.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## A family diff --git a/tests/results/test_namespace/20_0family_underscore.md b/tests/results/test_namespace/20_0family_underscore.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/20_0family_underscore.md +++ b/tests/results/test_namespace/20_0family_underscore.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/20_0multi_family.md b/tests/results/test_namespace/20_0multi_family.md index 2520ce6..6714942 100644 --- a/tests/results/test_namespace/20_0multi_family.md +++ b/tests/results/test_namespace/20_0multi_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/20_0multi_family_basic.md b/tests/results/test_namespace/20_0multi_family_basic.md index 503c67e..d7dcdc6 100644 --- a/tests/results/test_namespace/20_0multi_family_basic.md +++ b/tests/results/test_namespace/20_0multi_family_basic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/20_0multi_family_expert.md b/tests/results/test_namespace/20_0multi_family_expert.md index 31858c7..8b24939 100644 --- a/tests/results/test_namespace/20_0multi_family_expert.md +++ b/tests/results/test_namespace/20_0multi_family_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/20_0multi_family_order.md b/tests/results/test_namespace/20_0multi_family_order.md index 0dfb231..603a94a 100644 --- a/tests/results/test_namespace/20_0multi_family_order.md +++ b/tests/results/test_namespace/20_0multi_family_order.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 eb427fd..1a8b36e 100644 --- a/tests/results/test_namespace/20_0validators_differ_redefine.md +++ b/tests/results/test_namespace/20_0validators_differ_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/20_1empty_subfamily.md b/tests/results/test_namespace/20_1empty_subfamily.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/20_1empty_subfamily.md +++ b/tests/results/test_namespace/20_1empty_subfamily.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/20_9default_information_parent.md b/tests/results/test_namespace/20_9default_information_parent.md index ef1c110..0057a0b 100644 --- a/tests/results/test_namespace/20_9default_information_parent.md +++ b/tests/results/test_namespace/20_9default_information_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## rougail.family diff --git a/tests/results/test_namespace/24_0family_hidden_condition.md b/tests/results/test_namespace/24_0family_hidden_condition.md index 0f0893d..854e46c 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition.md +++ b/tests/results/test_namespace/24_0family_hidden_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 2ca94f9..6b85f8d 100644 --- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.md +++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 4bd3323..63be324 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 0e7876c..563daf1 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 4c2e7aa..bdd8a4c 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 c9f0038..0d82c74 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 f6b1e0a..d97652e 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 f3d276c..16d30e4 100644 --- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/24_7validators_variable_optional.md b/tests/results/test_namespace/24_7validators_variable_optional.md index 4de5c2b..fc15c76 100644 --- a/tests/results/test_namespace/24_7validators_variable_optional.md +++ b/tests/results/test_namespace/24_7validators_variable_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/24_family_disabled_var_hidden.md b/tests/results/test_namespace/24_family_disabled_var_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/24_family_disabled_var_hidden.md +++ b/tests/results/test_namespace/24_family_disabled_var_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/40_0leadership.md b/tests/results/test_namespace/40_0leadership.md index 50c02a1..4e887bb 100644 --- a/tests/results/test_namespace/40_0leadership.md +++ b/tests/results/test_namespace/40_0leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/40_0leadership_diff_name.md b/tests/results/test_namespace/40_0leadership_diff_name.md index 8500b82..a1c5c2b 100644 --- a/tests/results/test_namespace/40_0leadership_diff_name.md +++ b/tests/results/test_namespace/40_0leadership_diff_name.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/40_0leadership_empty.md b/tests/results/test_namespace/40_0leadership_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/40_0leadership_empty.md +++ b/tests/results/test_namespace/40_0leadership_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- 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 51fb2b7..c84c09e 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 5c56905..395a1d9 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 edc9604..aedad42 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 c5b0e68..8b537b3 100644 --- a/tests/results/test_namespace/40_0leadership_follower_default_value.md +++ b/tests/results/test_namespace/40_0leadership_follower_default_value.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 e5e36f1..23cbd64 100644 --- a/tests/results/test_namespace/40_0leadership_leader_not_multi.md +++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## rougail.general diff --git a/tests/results/test_namespace/40_1leadership_append_follower.md b/tests/results/test_namespace/40_1leadership_append_follower.md index d399e83..7ed5232 100644 --- a/tests/results/test_namespace/40_1leadership_append_follower.md +++ b/tests/results/test_namespace/40_1leadership_append_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.md b/tests/results/test_namespace/40_2leadership_calculation_index.md index 36c66df..24b6312 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_index.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 f92b2d9..791dad5 100644 --- a/tests/results/test_namespace/40_2leadership_calculation_param_index.md +++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## leadership diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.md b/tests/results/test_namespace/40_2leadership_leader_calculation.md index e82a113..ebb3dd0 100644 --- a/tests/results/test_namespace/40_2leadership_leader_calculation.md +++ b/tests/results/test_namespace/40_2leadership_leader_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.md b/tests/results/test_namespace/40_6leadership_follower_multi.md index 0cbf813..b191d12 100644 --- a/tests/results/test_namespace/40_6leadership_follower_multi.md +++ b/tests/results/test_namespace/40_6leadership_follower_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## A leadership diff --git a/tests/results/test_namespace/40_8calculation_boolean.md b/tests/results/test_namespace/40_8calculation_boolean.md index f6b59e5..5dc3808 100644 --- a/tests/results/test_namespace/40_8calculation_boolean.md +++ b/tests/results/test_namespace/40_8calculation_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 8e7c882..0cad9bd 100644 --- a/tests/results/test_namespace/40_8calculation_boolean_return_none.md +++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/40_8calculation_integer.md b/tests/results/test_namespace/40_8calculation_integer.md index 3baead1..979123b 100644 --- a/tests/results/test_namespace/40_8calculation_integer.md +++ b/tests/results/test_namespace/40_8calculation_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 e6759c5..4beabcb 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 cf303ee..420c906 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md index 98f1d39..c796028 100644 --- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## first family 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 57b8ef1..a0c1f2f 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 57b8ef1..a0c1f2f 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 7242f6c..3f97c91 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 8cb7d6a..1ae8330 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 8cb7d6a..1ae8330 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 c149f20..34a296a 100644 --- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/41_0choice_leader.md b/tests/results/test_namespace/41_0choice_leader.md index 692e410..5a619dc 100644 --- a/tests/results/test_namespace/41_0choice_leader.md +++ b/tests/results/test_namespace/41_0choice_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## The leadership diff --git a/tests/results/test_namespace/44_0leadership_hidden.md b/tests/results/test_namespace/44_0leadership_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/44_0leadership_hidden.md +++ b/tests/results/test_namespace/44_0leadership_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/44_0leadership_leader_hidden.md b/tests/results/test_namespace/44_0leadership_leader_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/44_0leadership_leader_hidden.md +++ b/tests/results/test_namespace/44_0leadership_leader_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace/44_1leadership_append_hidden_follower.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/44_1leadership_append_hidden_follower.md +++ b/tests/results/test_namespace/44_1leadership_append_hidden_follower.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.md index acb28fa..3106361 100644 --- a/tests/results/test_namespace/44_4disabled_calcultion_follower.md +++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/44_4leadership_mandatory.md b/tests/results/test_namespace/44_4leadership_mandatory.md index ac8803e..b9c966b 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory.md +++ b/tests/results/test_namespace/44_4leadership_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.md index 08212da..3405e1b 100644 --- a/tests/results/test_namespace/44_4leadership_mandatory_follower.md +++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a leadership 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 fc92888..9d43f16 100644 --- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 ce64d5a..83c6fba 100644 --- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md index d791171..f0882e7 100644 --- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.md +++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## rougail.leader diff --git a/tests/results/test_namespace/60_0family_dynamic.md b/tests/results/test_namespace/60_0family_dynamic.md index fa41d8e..ff4ff9c 100644 --- a/tests/results/test_namespace/60_0family_dynamic.md +++ b/tests/results/test_namespace/60_0family_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.md b/tests/results/test_namespace/60_0family_dynamic_1_0.md index 969b093..ded180a 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_0.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_0.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.md index 2df45f2..e80b370 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.md index 3a5e51c..834c5ff 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.md index 2e586af..7579fc7 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.md b/tests/results/test_namespace/60_0family_dynamic_1_1.md index 8b8de6e..cff6a5c 100644 --- a/tests/results/test_namespace/60_0family_dynamic_1_1.md +++ b/tests/results/test_namespace/60_0family_dynamic_1_1.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.md index 142106b..9eb4709 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 19ca989..7d39d0d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 new file mode 100644 index 0000000..1c2d4b9 --- /dev/null +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.adoc @@ -0,0 +1,43 @@ +== Variables for "Rougail" + +[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. + +**Default**: + +* val.1 +* val.2 +|==== + +=== A dynamic family + +`standard` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "rougail.var". + +[cols="1a,1a"] +|==== +| Variable | Description +| + +**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. + +**Default**: the value of the identifier. +| + +**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. + +**Default**: depends on a calculation. +|==== + diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json new file mode 100644 index 0000000..e383d3b --- /dev/null +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.json @@ -0,0 +1,144 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ] + }, + "children": { + "rougail.var": { + "type": "variable", + "default": [ + "val.1", + "val.2" + ], + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.var" + ], + "names": [ + "var" + ], + "descriptions": [ + "A suffix variable." + ] + }, + "dyn{{ identifier }}": { + "type": "dynamic", + "informations": { + "paths": [ + "rougail.dynval.1", + "rougail.dynval.2" + ], + "names": [ + "dynval_1", + "dynval_2" + ], + "description": "A dynamic family", + "properties": [ + { + "type": "mode", + "name": "standard" + } + ], + "identifiers": "the value of the variable \"rougail.var\".", + "help": [ + "This family builds families dynamically." + ] + }, + "children": { + "rougail.dyn{{ identifier }}.var1": { + "paths": [ + "rougail.dynval.1.var1", + "rougail.dynval.2.var1" + ], + "names": [ + "var1", + "var1" + ], + "type": "variable", + "default": "the value of the identifier.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "descriptions": [ + "A dynamic variable." + ] + }, + "rougail.dyn{{ identifier }}.var2": { + "paths": [ + "rougail.dynval.1.var2", + "rougail.dynval.2.var2" + ], + "names": [ + "var2", + "var2" + ], + "type": "variable", + "default": "depends on a calculation.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "descriptions": [ + "A dynamic variable." + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md new file mode 100644 index 0000000..3104359 --- /dev/null +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.md @@ -0,0 +1,19 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val.1<br/>- val.2 | + +## A dynamic family + +`standard` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "rougail.var". + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.dyn*val.1*.var1**<br/>**rougail.dyn*val.2*.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: the value of the identifier. | +| **rougail.dyn*val.1*.var2**<br/>**rougail.dyn*val.2*.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: depends on a calculation. | + diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh new file mode 100644 index 0000000..1882b66 --- /dev/null +++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.sh @@ -0,0 +1,47 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.var[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m [1;36;40munique[0m A suffix variable. + [1;36;40mmultiple[0m + [1mDefault[0m: + + +[1;33m • [0mval.1 +[1;33m • [0mval.2 +[1;33m [0m| + + + [1;4mA dynamic family[0m + +[1;36;40mstandard[0m + +This family builds families dynamically. + +[1mIdentifiers[0m: the value of the variable "rougail.var". + + + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.dyn[0m[1;3mval.1[0m[1m.var1[0m + [1mrougail.dyn[0m[1;3mval.2[0m[1m.var1[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m A dynamic variable. + [1mDefault[0m: the value of the + identifier. + [1mrougail.dyn[0m[1;3mval.1[0m[1m.var2[0m + [1mrougail.dyn[0m[1;3mval.2[0m[1m.var2[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m A dynamic variable. + [1mDefault[0m: depends on a calculation. + 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 0c02594..95eeb99 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number_empty.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number_empty.md index 35fc081..2a4420d 100644 --- a/tests/results/test_namespace/60_0family_dynamic_jinja_number_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.md b/tests/results/test_namespace/60_0family_dynamic_no_description.md index 956fd99..f419827 100644 --- a/tests/results/test_namespace/60_0family_dynamic_no_description.md +++ b/tests/results/test_namespace/60_0family_dynamic_no_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.md index 4dbe2ef..68b08f8 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_static.md b/tests/results/test_namespace/60_0family_dynamic_static.md index 3e30767..e9aa221 100644 --- a/tests/results/test_namespace/60_0family_dynamic_static.md +++ b/tests/results/test_namespace/60_0family_dynamic_static.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a dynamic family diff --git a/tests/results/test_namespace/60_0family_dynamic_test.md b/tests/results/test_namespace/60_0family_dynamic_test.md index 2985a79..43bc168 100644 --- a/tests/results/test_namespace/60_0family_dynamic_test.md +++ b/tests/results/test_namespace/60_0family_dynamic_test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 15394d4..fa5ad3c 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md index 65b722f..fc844ac 100644 --- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.md index 79e162a..7fda2da 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_0family_empty.md b/tests/results/test_namespace/60_0family_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/60_0family_empty.md +++ b/tests/results/test_namespace/60_0family_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/60_0family_hidden.md b/tests/results/test_namespace/60_0family_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace/60_0family_hidden.md +++ b/tests/results/test_namespace/60_0family_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace/60_0family_mode.md b/tests/results/test_namespace/60_0family_mode.md index 65dc69a..cc333f3 100644 --- a/tests/results/test_namespace/60_0family_mode.md +++ b/tests/results/test_namespace/60_0family_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a family diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.md b/tests/results/test_namespace/60_1family_dynamic_jinja.md index 849605e..e337098 100644 --- a/tests/results/test_namespace/60_1family_dynamic_jinja.md +++ b/tests/results/test_namespace/60_1family_dynamic_jinja.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.md index 8d8b84c..61d9e9d 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.md index 6af1a43..06ba581 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index 6de6414..722be27 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.md index 63a6560..8f6fca2 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md index 01917dd..332d095 100644 --- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.md index 146b8d6..5465543 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.md b/tests/results/test_namespace/60_5family_dynamic_calc2.md index 636fb91..2e28127 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md index c04d51f..3169544 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md index 78c9f64..db4eec6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md index 24b2535..5d93062 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.md index 1654b7e..cc22b8b 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.md index acd7c56..756089e 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## rougail.dyn*val1* or rougail.dyn*val2* 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 07e9ba3..1eff54c 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 ce50676..9a08b76 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | 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 new file mode 100644 index 0000000..681d465 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.adoc @@ -0,0 +1,41 @@ +== Variables for "Rougail" + +[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 values of undocumented variables. +| + +**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__ or rougail.dyn__val2__ + +`basic` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "rougail.var1". + +[cols="1a,1a"] +|==== +| 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. +|==== + diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json new file mode 100644 index 0000000..1d881ae --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.json @@ -0,0 +1,136 @@ +{ + "rougail": { + "type": "namespace", + "informations": { + "paths": [ + "rougail" + ], + "names": [ + "rougail" + ], + "description": "Rougail", + "properties": [ + { + "type": "mode", + "name": "basic" + } + ] + }, + "children": { + "rougail.var2": { + "type": "variable", + "default": "the values of undocumented variables.", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "paths": [ + "rougail.var2" + ], + "names": [ + "var2" + ], + "descriptions": [ + "A variable calculated." + ] + }, + "rougail.var1": { + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "standard" + }, + { + "type": "property", + "name": "unique" + }, + { + "type": "multiple", + "name": "multiple" + } + ], + "paths": [ + "rougail.var1" + ], + "names": [ + "var1" + ], + "descriptions": [ + "A suffix variable." + ], + "examples": [ + "val1", + "val2" + ] + }, + "dyn{{ identifier }}": { + "type": "dynamic", + "informations": { + "paths": [ + "rougail.dynval1", + "rougail.dynval2" + ], + "names": [ + "dynval1", + "dynval2" + ], + "properties": [ + { + "type": "mode", + "name": "basic" + } + ], + "identifiers": "the value of the variable \"rougail.var1\".", + "help": [ + "This family builds families dynamically." + ] + }, + "children": { + "rougail.dyn{{ identifier }}.var": { + "paths": [ + "rougail.dynval1.var", + "rougail.dynval2.var" + ], + "names": [ + "var", + "var" + ], + "type": "variable", + "properties": [ + { + "type": "type", + "name": "string" + }, + { + "type": "mode", + "name": "basic" + }, + { + "type": "property", + "name": "mandatory" + } + ], + "descriptions": [ + "A dynamic variable." + ] + } + } + } + } + } +} \ No newline at end of file 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 new file mode 100644 index 0000000..85f81aa --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.md @@ -0,0 +1,19 @@ +# Variables for "Rougail" + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the values of undocumented variables. | +| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 | + +## rougail.dyn*val1* or rougail.dyn*val2* + +`basic` + +This family builds families dynamically. + +**Identifiers**: the value of the variable "rougail.var1". + +| Variable | Description | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **rougail.dyn*val1*.var**<br/>**rougail.dyn*val2*.var**<br/>[`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.sh b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh new file mode 100644 index 0000000..d3af364 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.sh @@ -0,0 +1,42 @@ +┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ +┃ [1mVariables for "Rougail"[0m ┃ +┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ + + + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.var2[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40mmandatory[0m A variable calculated. + [1mDefault[0m: the values of undocumented + variables. + [1mrougail.var1[0m + [1;36;40mstring[0m [1;36;40mstandard[0m [1;36;40munique[0m [1;36;40mmultiple[0m A suffix variable. + [1mExamples[0m: + + +[1;33m • [0mval1 +[1;33m • [0mval2 +[1;33m [0m| + + + [1;4mrougail.dyn[0m[1;3;4mval1[0m[1;4m or rougail.dyn[0m[1;3;4mval2[0m + +[1;36;40mbasic[0m + +This family builds families dynamically. + +[1mIdentifiers[0m: the value of the variable "rougail.var1". + + + + + [1m [0m[1mVariable [0m[1m [0m [1m [0m[1mDescription [0m[1m [0m + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + [1mrougail.dyn[0m[1;3mval1[0m[1m.var[0m + [1mrougail.dyn[0m[1;3mval2[0m[1m.var[0m + [1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A dynamic variable. + diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.md index 98801d4..d7c584f 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.md index 92c39c0..8b1e6c3 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md index 78c9f64..db4eec6 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.md index 07e9ba3..1eff54c 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md index 6c4515a..6156471 100644 --- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## a dynamic family 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 a20227e..eccc2ac 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md index 96c6055..d411026 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md index 00db238..dcb0264 100644 --- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md +++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.md index 78b9311..d8b384b 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.md index 96c6055..d411026 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.md index de847d7..f130642 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.md index adc15c7..44b72dd 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.md index 42ad1bb..f729772 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.md index a025558..59dc87c 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.md index 135666a..f7e710f 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.md index 1afb57e..70be975 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.md b/tests/results/test_namespace/60_6family_dynamic_inside.md index 1778aff..a568a40 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md index e8782d8..3f2ef83 100644 --- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.md b/tests/results/test_namespace/60_6family_dynamic_leadership.md index 58dd7fb..4c9ba12 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md index 0e5eb61..9e989e6 100644 --- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md index 11c5160..b91ed48 100644 --- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md +++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.md index 11c5160..b91ed48 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.md index d7edd4f..fdd8e13 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.md index 2437e47..0b9c289 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,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_9extra_dynamic.md b/tests/results/test_namespace/60_9extra_dynamic.md index b2b1fd8..7a5abaf 100644 --- a/tests/results/test_namespace/60_9extra_dynamic.md +++ b/tests/results/test_namespace/60_9extra_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.md b/tests/results/test_namespace/60_9extra_dynamic_extra.md index 192a233..8293aaa 100644 --- a/tests/results/test_namespace/60_9extra_dynamic_extra.md +++ b/tests/results/test_namespace/60_9extra_dynamic_extra.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## général 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 c422936..2fc18b9 100644 --- a/tests/results/test_namespace/60_9family_dynamic_calc_both.md +++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" | Variable | Description | diff --git a/tests/results/test_namespace/68_0family_leadership_mode.md b/tests/results/test_namespace/68_0family_leadership_mode.md index bcf640b..acdd9d4 100644 --- a/tests/results/test_namespace/68_0family_leadership_mode.md +++ b/tests/results/test_namespace/68_0family_leadership_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Variables for "Rougail" ## A leadership diff --git a/tests/results/test_namespace_examples/00_0empty.md b/tests/results/test_namespace_examples/00_0empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/00_0empty.md +++ b/tests/results/test_namespace_examples/00_0empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/00_0version_underscore.md b/tests/results/test_namespace_examples/00_0version_underscore.md index b201c71..d7bd4c6 100644 --- a/tests/results/test_namespace_examples/00_0version_underscore.md +++ b/tests/results/test_namespace_examples/00_0version_underscore.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_1empty_variable.md b/tests/results/test_namespace_examples/00_1empty_variable.md index e223f07..4089ddf 100644 --- a/tests/results/test_namespace_examples/00_1empty_variable.md +++ b/tests/results/test_namespace_examples/00_1empty_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_2default_calculated.md b/tests/results/test_namespace_examples/00_2default_calculated.md index c23ef91..c505c8e 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated.md +++ b/tests/results/test_namespace_examples/00_2default_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_2default_calculated_multi.md b/tests/results/test_namespace_examples/00_2default_calculated_multi.md index bdef3d8..50545fb 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_multi.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.md index fa0ca38..efafd86 100644 --- a/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.md +++ b/tests/results/test_namespace_examples/00_2default_calculated_variable_transitive.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_4load_subfolder.md b/tests/results/test_namespace_examples/00_4load_subfolder.md index 325ef68..c32cf72 100644 --- a/tests/results/test_namespace_examples/00_4load_subfolder.md +++ b/tests/results/test_namespace_examples/00_4load_subfolder.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_5load_notype.md b/tests/results/test_namespace_examples/00_5load_notype.md index e94b94f..e9867de 100644 --- a/tests/results/test_namespace_examples/00_5load_notype.md +++ b/tests/results/test_namespace_examples/00_5load_notype.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6boolean.md b/tests/results/test_namespace_examples/00_6boolean.md index be380ab..4cde543 100644 --- a/tests/results/test_namespace_examples/00_6boolean.md +++ b/tests/results/test_namespace_examples/00_6boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.md b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.md index 3cae4ca..fb00520 100644 --- a/tests/results/test_namespace_examples/00_6boolean_no_mandatory.md +++ b/tests/results/test_namespace_examples/00_6boolean_no_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6choice.md b/tests/results/test_namespace_examples/00_6choice.md index 33692f0..7d259b2 100644 --- a/tests/results/test_namespace_examples/00_6choice.md +++ b/tests/results/test_namespace_examples/00_6choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_6choice_calculation.md b/tests/results/test_namespace_examples/00_6choice_calculation.md index be6659f..7fa1542 100644 --- a/tests/results/test_namespace_examples/00_6choice_calculation.md +++ b/tests/results/test_namespace_examples/00_6choice_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6choice_variable.md b/tests/results/test_namespace_examples/00_6choice_variable.md index 179eb88..24593d1 100644 --- a/tests/results/test_namespace_examples/00_6choice_variable.md +++ b/tests/results/test_namespace_examples/00_6choice_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6custom.md b/tests/results/test_namespace_examples/00_6custom.md index 233fee5..81b4ed7 100644 --- a/tests/results/test_namespace_examples/00_6custom.md +++ b/tests/results/test_namespace_examples/00_6custom.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_6domainname.md b/tests/results/test_namespace_examples/00_6domainname.md index 91a1382..0e8575a 100644 --- a/tests/results/test_namespace_examples/00_6domainname.md +++ b/tests/results/test_namespace_examples/00_6domainname.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6domainname_params.md b/tests/results/test_namespace_examples/00_6domainname_params.md index 91a1382..0e8575a 100644 --- a/tests/results/test_namespace_examples/00_6domainname_params.md +++ b/tests/results/test_namespace_examples/00_6domainname_params.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6float.md b/tests/results/test_namespace_examples/00_6float.md index 4e55c10..3096a05 100644 --- a/tests/results/test_namespace_examples/00_6float.md +++ b/tests/results/test_namespace_examples/00_6float.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6number.md b/tests/results/test_namespace_examples/00_6number.md index fcebf42..38765ca 100644 --- a/tests/results/test_namespace_examples/00_6number.md +++ b/tests/results/test_namespace_examples/00_6number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6port.md b/tests/results/test_namespace_examples/00_6port.md index 968e197..37f66fb 100644 --- a/tests/results/test_namespace_examples/00_6port.md +++ b/tests/results/test_namespace_examples/00_6port.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_6regexp.md b/tests/results/test_namespace_examples/00_6regexp.md index 59370eb..7d34809 100644 --- a/tests/results/test_namespace_examples/00_6regexp.md +++ b/tests/results/test_namespace_examples/00_6regexp.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_6secret.md b/tests/results/test_namespace_examples/00_6secret.md index ec57fd9..5230468 100644 --- a/tests/results/test_namespace_examples/00_6secret.md +++ b/tests/results/test_namespace_examples/00_6secret.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_6secret_param.md b/tests/results/test_namespace_examples/00_6secret_param.md new file mode 100644 index 0000000..5230468 --- /dev/null +++ b/tests/results/test_namespace_examples/00_6secret_param.md @@ -0,0 +1,15 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + secret1: secrets +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + secret1: secrets + secret2: value +``` diff --git a/tests/results/test_namespace_examples/00_6string.md b/tests/results/test_namespace_examples/00_6string.md index 96033a9..919b253 100644 --- a/tests/results/test_namespace_examples/00_6string.md +++ b/tests/results/test_namespace_examples/00_6string.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_7choice_quote.md b/tests/results/test_namespace_examples/00_7choice_quote.md index a958225..7cfc282 100644 --- a/tests/results/test_namespace_examples/00_7choice_quote.md +++ b/tests/results/test_namespace_examples/00_7choice_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_7help.md b/tests/results/test_namespace_examples/00_7help.md new file mode 100644 index 0000000..c32cf72 --- /dev/null +++ b/tests/results/test_namespace_examples/00_7help.md @@ -0,0 +1,16 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + var1: example + var2: example +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + var1: example + var2: example +``` diff --git a/tests/results/test_namespace_examples/00_7help_quote.md b/tests/results/test_namespace_examples/00_7help_quote.md index 325ef68..c32cf72 100644 --- a/tests/results/test_namespace_examples/00_7help_quote.md +++ b/tests/results/test_namespace_examples/00_7help_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_7help_sup.md b/tests/results/test_namespace_examples/00_7help_sup.md new file mode 100644 index 0000000..c32cf72 --- /dev/null +++ b/tests/results/test_namespace_examples/00_7help_sup.md @@ -0,0 +1,16 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + var1: example + var2: example +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + var1: example + var2: example +``` diff --git a/tests/results/test_namespace_examples/00_7value_doublequote.md b/tests/results/test_namespace_examples/00_7value_doublequote.md index facea3b..25c6022 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_7value_doublequote2.md b/tests/results/test_namespace_examples/00_7value_doublequote2.md index 8cd76e7..73918d7 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote2.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_7value_doublequote3.md b/tests/results/test_namespace_examples/00_7value_doublequote3.md index c999137..a76e47e 100644 --- a/tests/results/test_namespace_examples/00_7value_doublequote3.md +++ b/tests/results/test_namespace_examples/00_7value_doublequote3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_7value_quote.md b/tests/results/test_namespace_examples/00_7value_quote.md index 0dad0fe..b54a024 100644 --- a/tests/results/test_namespace_examples/00_7value_quote.md +++ b/tests/results/test_namespace_examples/00_7value_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_8calculation_information.md b/tests/results/test_namespace_examples/00_8calculation_information.md index c2375da..7ad3001 100644 --- a/tests/results/test_namespace_examples/00_8calculation_information.md +++ b/tests/results/test_namespace_examples/00_8calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_8calculation_namespace.md b/tests/results/test_namespace_examples/00_8calculation_namespace.md new file mode 100644 index 0000000..faf7e8a --- /dev/null +++ b/tests/results/test_namespace_examples/00_8calculation_namespace.md @@ -0,0 +1,7 @@ +# Example with all variables modifiable + +```yaml +--- +rougail: + variable: Rougail +``` diff --git a/tests/results/test_namespace_examples/00_8calculation_param_namespace.md b/tests/results/test_namespace_examples/00_8calculation_param_namespace.md new file mode 100644 index 0000000..faf7e8a --- /dev/null +++ b/tests/results/test_namespace_examples/00_8calculation_param_namespace.md @@ -0,0 +1,7 @@ +# Example with all variables modifiable + +```yaml +--- +rougail: + variable: Rougail +``` diff --git a/tests/results/test_namespace_examples/00_8test.md b/tests/results/test_namespace_examples/00_8test.md index 17ca5ff..2012c3f 100644 --- a/tests/results/test_namespace_examples/00_8test.md +++ b/tests/results/test_namespace_examples/00_8test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9choice_variable_multi.md b/tests/results/test_namespace_examples/00_9choice_variable_multi.md index a58f8aa..6e2d331 100644 --- a/tests/results/test_namespace_examples/00_9choice_variable_multi.md +++ b/tests/results/test_namespace_examples/00_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9choice_variables.md b/tests/results/test_namespace_examples/00_9choice_variables.md index 7d54608..2c4472a 100644 --- a/tests/results/test_namespace_examples/00_9choice_variables.md +++ b/tests/results/test_namespace_examples/00_9choice_variables.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation.md b/tests/results/test_namespace_examples/00_9default_calculation.md index 578cee5..0a5de5c 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation.md +++ b/tests/results/test_namespace_examples/00_9default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information.md b/tests/results/test_namespace_examples/00_9default_calculation_information.md index 3085a41..3fe6aa0 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_information.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.md index 6800af9..8808b07 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.md index 3d65d78..864a14b 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.md index 3d65d78..864a14b 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_multi_optional2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional.md b/tests/results/test_namespace_examples/00_9default_calculation_optional.md index c541cd1..7b772c7 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.md index e37b4b9..7c4859d 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_optional_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.md b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.md index 17bc05d..b2c92bf 100644 --- a/tests/results/test_namespace_examples/00_9default_calculation_param_optional.md +++ b/tests/results/test_namespace_examples/00_9default_calculation_param_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable.md b/tests/results/test_namespace_examples/00_9default_information_other_variable.md index 6800af9..8808b07 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable.md +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_information_other_variable2.md b/tests/results/test_namespace_examples/00_9default_information_other_variable2.md index 6800af9..8808b07 100644 --- a/tests/results/test_namespace_examples/00_9default_information_other_variable2.md +++ b/tests/results/test_namespace_examples/00_9default_information_other_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/00_9default_integer.md b/tests/results/test_namespace_examples/00_9default_integer.md index be6659f..7fa1542 100644 --- a/tests/results/test_namespace_examples/00_9default_integer.md +++ b/tests/results/test_namespace_examples/00_9default_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9extra.md b/tests/results/test_namespace_examples/00_9extra.md index 969782a..5223ae0 100644 --- a/tests/results/test_namespace_examples/00_9extra.md +++ b/tests/results/test_namespace_examples/00_9extra.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9extra_calculation.md b/tests/results/test_namespace_examples/00_9extra_calculation.md index 5c65c79..a797307 100644 --- a/tests/results/test_namespace_examples/00_9extra_calculation.md +++ b/tests/results/test_namespace_examples/00_9extra_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/00_9extra_ouside.md b/tests/results/test_namespace_examples/00_9extra_ouside.md index 98887d6..2b79d2c 100644 --- a/tests/results/test_namespace_examples/00_9extra_ouside.md +++ b/tests/results/test_namespace_examples/00_9extra_ouside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_6boolean_multi.md b/tests/results/test_namespace_examples/01_6boolean_multi.md index 53a0e7a..e8a204d 100644 --- a/tests/results/test_namespace_examples/01_6boolean_multi.md +++ b/tests/results/test_namespace_examples/01_6boolean_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_6custom_multi.md b/tests/results/test_namespace_examples/01_6custom_multi.md index 2ba9127..9fdb1c4 100644 --- a/tests/results/test_namespace_examples/01_6custom_multi.md +++ b/tests/results/test_namespace_examples/01_6custom_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/01_6float_multi.md b/tests/results/test_namespace_examples/01_6float_multi.md index 0031712..a68b284 100644 --- a/tests/results/test_namespace_examples/01_6float_multi.md +++ b/tests/results/test_namespace_examples/01_6float_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_6number_multi.md b/tests/results/test_namespace_examples/01_6number_multi.md index 8a557b6..1f9cd2c 100644 --- a/tests/results/test_namespace_examples/01_6number_multi.md +++ b/tests/results/test_namespace_examples/01_6number_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_6string_empty.md b/tests/results/test_namespace_examples/01_6string_empty.md index 5620324..b5efc91 100644 --- a/tests/results/test_namespace_examples/01_6string_empty.md +++ b/tests/results/test_namespace_examples/01_6string_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_6string_multi.md b/tests/results/test_namespace_examples/01_6string_multi.md index a01bd0e..550e5d4 100644 --- a/tests/results/test_namespace_examples/01_6string_multi.md +++ b/tests/results/test_namespace_examples/01_6string_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote.md b/tests/results/test_namespace_examples/01_7value_multi_doublequote.md index 861ecf5..5299437 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote.md +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.md b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.md index e99e61a..18b38d0 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_doublequote2.md +++ b/tests/results/test_namespace_examples/01_7value_multi_doublequote2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_7value_multi_quote.md b/tests/results/test_namespace_examples/01_7value_multi_quote.md index 4cd92da..5714f75 100644 --- a/tests/results/test_namespace_examples/01_7value_multi_quote.md +++ b/tests/results/test_namespace_examples/01_7value_multi_quote.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_8calculation_information_multi.md b/tests/results/test_namespace_examples/01_8calculation_information_multi.md index c70b70e..a1601e1 100644 --- a/tests/results/test_namespace_examples/01_8calculation_information_multi.md +++ b/tests/results/test_namespace_examples/01_8calculation_information_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/01_9choice_variable_multi.md b/tests/results/test_namespace_examples/01_9choice_variable_multi.md index 203ac18..d022c6a 100644 --- a/tests/results/test_namespace_examples/01_9choice_variable_multi.md +++ b/tests/results/test_namespace_examples/01_9choice_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_0type_param.md b/tests/results/test_namespace_examples/04_0type_param.md index ba5ae04..9a0c055 100644 --- a/tests/results/test_namespace_examples/04_0type_param.md +++ b/tests/results/test_namespace_examples/04_0type_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_1auto_save.md b/tests/results/test_namespace_examples/04_1auto_save.md index 9a79288..90de949 100644 --- a/tests/results/test_namespace_examples/04_1auto_save.md +++ b/tests/results/test_namespace_examples/04_1auto_save.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.md b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.md index 17bc05d..b2c92bf 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated.md +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.md index 1259de8..92f7dce 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.md +++ b/tests/results/test_namespace_examples/04_1auto_save_and_calculated_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_1auto_save_and_hidden.md b/tests/results/test_namespace_examples/04_1auto_save_and_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/04_1auto_save_and_hidden.md +++ b/tests/results/test_namespace_examples/04_1auto_save_and_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden.md index 4ad4ce1..6060f29 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.md index dce1351..a2f3caa 100644 --- a/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.md +++ b/tests/results/test_namespace_examples/04_1default_calculation_hidden_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation.md b/tests/results/test_namespace_examples/04_5disabled_calculation.md index 949c0c9..bda98ac 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_default.md b/tests/results/test_namespace_examples/04_5disabled_calculation_default.md index c9c8f24..e4629d9 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_default.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.md b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.md index 25382a5..3c0111f 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_multi.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.md b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.md index 28727e3..f715739 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_optional.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.md index 33fc900..3437718 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.md index 0e60d49..d8f27c8 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.md index 39358b1..6eb90e7 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable3.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.md index 39358b1..6eb90e7 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable4.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.md index 0108e2b..39957a9 100644 --- a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.md +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi2.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi2.md new file mode 100644 index 0000000..884c65e --- /dev/null +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi2.md @@ -0,0 +1,20 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + condition: + - example + variable: + - example +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + condition: + - example + variable: + - example +``` diff --git a/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi3.md b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi3.md new file mode 100644 index 0000000..cd18f0e --- /dev/null +++ b/tests/results/test_namespace_examples/04_5disabled_calculation_variable_multi3.md @@ -0,0 +1,19 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + variable: + - example +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + condition: + - val1 + - val2 + variable: + - example +``` diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation.md b/tests/results/test_namespace_examples/04_5hidden_calculation.md index c9c8f24..e4629d9 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation2.md b/tests/results/test_namespace_examples/04_5hidden_calculation2.md index c9c8f24..e4629d9 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation2.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.md index c9c8f24..e4629d9 100644 --- a/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.md +++ b/tests/results/test_namespace_examples/04_5hidden_calculation_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5validators.md b/tests/results/test_namespace_examples/04_5validators.md index 8c6c1bb..e835b97 100644 --- a/tests/results/test_namespace_examples/04_5validators.md +++ b/tests/results/test_namespace_examples/04_5validators.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/04_5validators_differ.md b/tests/results/test_namespace_examples/04_5validators_differ.md index f045a4f..dee1efd 100644 --- a/tests/results/test_namespace_examples/04_5validators_differ.md +++ b/tests/results/test_namespace_examples/04_5validators_differ.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5validators_multi.md b/tests/results/test_namespace_examples/04_5validators_multi.md index 33d0dd3..35a1d5c 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi.md +++ b/tests/results/test_namespace_examples/04_5validators_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/04_5validators_multi2.md b/tests/results/test_namespace_examples/04_5validators_multi2.md index eec31c9..b2d6ab0 100644 --- a/tests/results/test_namespace_examples/04_5validators_multi2.md +++ b/tests/results/test_namespace_examples/04_5validators_multi2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/05_0multi_not_uniq.md b/tests/results/test_namespace_examples/05_0multi_not_uniq.md index 96598c3..07d321e 100644 --- a/tests/results/test_namespace_examples/05_0multi_not_uniq.md +++ b/tests/results/test_namespace_examples/05_0multi_not_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/05_0multi_uniq.md b/tests/results/test_namespace_examples/05_0multi_uniq.md index cd04f32..8b8ae92 100644 --- a/tests/results/test_namespace_examples/05_0multi_uniq.md +++ b/tests/results/test_namespace_examples/05_0multi_uniq.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/12_1auto_save_expert.md b/tests/results/test_namespace_examples/12_1auto_save_expert.md index c4eb654..6bd6ec8 100644 --- a/tests/results/test_namespace_examples/12_1auto_save_expert.md +++ b/tests/results/test_namespace_examples/12_1auto_save_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_0redefine_description.md b/tests/results/test_namespace_examples/16_0redefine_description.md index 1701c2e..271e0f2 100644 --- a/tests/results/test_namespace_examples/16_0redefine_description.md +++ b/tests/results/test_namespace_examples/16_0redefine_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_2family_redefine_calculation.md b/tests/results/test_namespace_examples/16_2family_redefine_calculation.md index b0caa97..ce6431e 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_calculation.md +++ b/tests/results/test_namespace_examples/16_2family_redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_2family_redefine_disabled.md b/tests/results/test_namespace_examples/16_2family_redefine_disabled.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/16_2family_redefine_disabled.md +++ b/tests/results/test_namespace_examples/16_2family_redefine_disabled.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/16_5exists_nonexists.md b/tests/results/test_namespace_examples/16_5exists_nonexists.md index 1259de8..92f7dce 100644 --- a/tests/results/test_namespace_examples/16_5exists_nonexists.md +++ b/tests/results/test_namespace_examples/16_5exists_nonexists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_5exists_redefine.md b/tests/results/test_namespace_examples/16_5exists_redefine.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/16_5exists_redefine.md +++ b/tests/results/test_namespace_examples/16_5exists_redefine.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_calculation.md b/tests/results/test_namespace_examples/16_5redefine_calculation.md index fcb7aa4..ef428f2 100644 --- a/tests/results/test_namespace_examples/16_5redefine_calculation.md +++ b/tests/results/test_namespace_examples/16_5redefine_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_choice.md b/tests/results/test_namespace_examples/16_5redefine_choice.md index 63115c6..b6e07ad 100644 --- a/tests/results/test_namespace_examples/16_5redefine_choice.md +++ b/tests/results/test_namespace_examples/16_5redefine_choice.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_default.md b/tests/results/test_namespace_examples/16_5redefine_default.md index fcb7aa4..ef428f2 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default.md +++ b/tests/results/test_namespace_examples/16_5redefine_default.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_default_calculation.md b/tests/results/test_namespace_examples/16_5redefine_default_calculation.md index 5b1557b..d6ac535 100644 --- a/tests/results/test_namespace_examples/16_5redefine_default_calculation.md +++ b/tests/results/test_namespace_examples/16_5redefine_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_family.md b/tests/results/test_namespace_examples/16_5redefine_family.md index 9cb6b52..cf73689 100644 --- a/tests/results/test_namespace_examples/16_5redefine_family.md +++ b/tests/results/test_namespace_examples/16_5redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_help.md b/tests/results/test_namespace_examples/16_5redefine_help.md index 9cb6b52..cf73689 100644 --- a/tests/results/test_namespace_examples/16_5redefine_help.md +++ b/tests/results/test_namespace_examples/16_5redefine_help.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_hidden.md b/tests/results/test_namespace_examples/16_5redefine_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/16_5redefine_hidden.md +++ b/tests/results/test_namespace_examples/16_5redefine_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/16_5redefine_multi.md b/tests/results/test_namespace_examples/16_5redefine_multi.md index cd04f32..8b8ae92 100644 --- a/tests/results/test_namespace_examples/16_5redefine_multi.md +++ b/tests/results/test_namespace_examples/16_5redefine_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.md index 01c2722..a60ce46 100644 --- a/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.md +++ b/tests/results/test_namespace_examples/16_5redefine_remove_disable_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_5test_redefine.md b/tests/results/test_namespace_examples/16_5test_redefine.md index f1dfa66..aeb9952 100644 --- a/tests/results/test_namespace_examples/16_5test_redefine.md +++ b/tests/results/test_namespace_examples/16_5test_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16_6choice_redefine.md b/tests/results/test_namespace_examples/16_6choice_redefine.md index 5ba64d5..030a513 100644 --- a/tests/results/test_namespace_examples/16_6choice_redefine.md +++ b/tests/results/test_namespace_examples/16_6choice_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/16_6exists_family.md b/tests/results/test_namespace_examples/16_6exists_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/16_6exists_family.md +++ b/tests/results/test_namespace_examples/16_6exists_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/16_6exists_redefine_family.md b/tests/results/test_namespace_examples/16_6exists_redefine_family.md index 68d2490..93ac151 100644 --- a/tests/results/test_namespace_examples/16_6exists_redefine_family.md +++ b/tests/results/test_namespace_examples/16_6exists_redefine_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/16exists_exists.md b/tests/results/test_namespace_examples/16exists_exists.md index 1701c2e..271e0f2 100644 --- a/tests/results/test_namespace_examples/16exists_exists.md +++ b/tests/results/test_namespace_examples/16exists_exists.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/17_5redefine_leadership.md b/tests/results/test_namespace_examples/17_5redefine_leadership.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/17_5redefine_leadership.md +++ b/tests/results/test_namespace_examples/17_5redefine_leadership.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/20_0empty_family.md b/tests/results/test_namespace_examples/20_0empty_family.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/20_0empty_family.md +++ b/tests/results/test_namespace_examples/20_0empty_family.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/20_0family_append.md b/tests/results/test_namespace_examples/20_0family_append.md index b8fa1a3..2a5ab96 100644 --- a/tests/results/test_namespace_examples/20_0family_append.md +++ b/tests/results/test_namespace_examples/20_0family_append.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/20_0family_underscore.md b/tests/results/test_namespace_examples/20_0family_underscore.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/20_0family_underscore.md +++ b/tests/results/test_namespace_examples/20_0family_underscore.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/20_0multi_family.md b/tests/results/test_namespace_examples/20_0multi_family.md index ec975ab..cb605a1 100644 --- a/tests/results/test_namespace_examples/20_0multi_family.md +++ b/tests/results/test_namespace_examples/20_0multi_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/20_0multi_family_basic.md b/tests/results/test_namespace_examples/20_0multi_family_basic.md index 261f268..a29422f 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_basic.md +++ b/tests/results/test_namespace_examples/20_0multi_family_basic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/20_0multi_family_expert.md b/tests/results/test_namespace_examples/20_0multi_family_expert.md index ec975ab..cb605a1 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_expert.md +++ b/tests/results/test_namespace_examples/20_0multi_family_expert.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/20_0multi_family_order.md b/tests/results/test_namespace_examples/20_0multi_family_order.md index 2d9a706..2b6b6af 100644 --- a/tests/results/test_namespace_examples/20_0multi_family_order.md +++ b/tests/results/test_namespace_examples/20_0multi_family_order.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/20_0validators_differ_redefine.md b/tests/results/test_namespace_examples/20_0validators_differ_redefine.md index 5f4f36e..84fa5fc 100644 --- a/tests/results/test_namespace_examples/20_0validators_differ_redefine.md +++ b/tests/results/test_namespace_examples/20_0validators_differ_redefine.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/20_1empty_subfamily.md b/tests/results/test_namespace_examples/20_1empty_subfamily.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/20_1empty_subfamily.md +++ b/tests/results/test_namespace_examples/20_1empty_subfamily.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/20_9default_information_parent.md b/tests/results/test_namespace_examples/20_9default_information_parent.md index 7eafcd7..9d75d4b 100644 --- a/tests/results/test_namespace_examples/20_9default_information_parent.md +++ b/tests/results/test_namespace_examples/20_9default_information_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition.md b/tests/results/test_namespace_examples/24_0family_hidden_condition.md index 1659892..71e4310 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.md index eca2e3e..0f670fc 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.md index 5106ea5..991089a 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.md index 262fc2e..14bd2fd 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_variable_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.md index d3ccf3a..760454e 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_condition_with_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.md index 70de912..bb9e4d7 100644 --- a/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.md +++ b/tests/results/test_namespace_examples/24_0family_hidden_param_condition_sub_family.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition.md b/tests/results/test_namespace_examples/24_0family_mandatory_condition.md index 29cc2c2..82b71ee 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition.md +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.md index 22cef86..b8645e2 100644 --- a/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.md +++ b/tests/results/test_namespace_examples/24_0family_mandatory_condition_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/24_7validators_variable_optional.md b/tests/results/test_namespace_examples/24_7validators_variable_optional.md index 02aacc2..b95068b 100644 --- a/tests/results/test_namespace_examples/24_7validators_variable_optional.md +++ b/tests/results/test_namespace_examples/24_7validators_variable_optional.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/24_family_disabled_var_hidden.md b/tests/results/test_namespace_examples/24_family_disabled_var_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/24_family_disabled_var_hidden.md +++ b/tests/results/test_namespace_examples/24_family_disabled_var_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/40_0leadership.md b/tests/results/test_namespace_examples/40_0leadership.md index 99ae9c2..0711789 100644 --- a/tests/results/test_namespace_examples/40_0leadership.md +++ b/tests/results/test_namespace_examples/40_0leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_diff_name.md b/tests/results/test_namespace_examples/40_0leadership_diff_name.md index 3c2ad13..4e956b6 100644 --- a/tests/results/test_namespace_examples/40_0leadership_diff_name.md +++ b/tests/results/test_namespace_examples/40_0leadership_diff_name.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_empty.md b/tests/results/test_namespace_examples/40_0leadership_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/40_0leadership_empty.md +++ b/tests/results/test_namespace_examples/40_0leadership_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.md index f32d347..3307369 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.md index 20859e7..02008d6 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.md index 20b4fca..71c66da 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_submulti_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.md b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.md index 7798c16..f18436a 100644 --- a/tests/results/test_namespace_examples/40_0leadership_follower_default_value.md +++ b/tests/results/test_namespace_examples/40_0leadership_follower_default_value.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.md b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.md index 06cf3fb..98d1014 100644 --- a/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.md +++ b/tests/results/test_namespace_examples/40_0leadership_leader_not_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_1leadership_append_follower.md b/tests/results/test_namespace_examples/40_1leadership_append_follower.md index 19b0535..ba93f42 100644 --- a/tests/results/test_namespace_examples/40_1leadership_append_follower.md +++ b/tests/results/test_namespace_examples/40_1leadership_append_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_index.md b/tests/results/test_namespace_examples/40_2leadership_calculation_index.md index 1e3a86c..276adb8 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_index.md +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_index.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.md b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.md index 1e3a86c..276adb8 100644 --- a/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.md +++ b/tests/results/test_namespace_examples/40_2leadership_calculation_param_index.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.md b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.md index f0414bd..9fbeb16 100644 --- a/tests/results/test_namespace_examples/40_2leadership_leader_calculation.md +++ b/tests/results/test_namespace_examples/40_2leadership_leader_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_6leadership_follower_multi.md b/tests/results/test_namespace_examples/40_6leadership_follower_multi.md index 2568026..039280c 100644 --- a/tests/results/test_namespace_examples/40_6leadership_follower_multi.md +++ b/tests/results/test_namespace_examples/40_6leadership_follower_multi.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean.md b/tests/results/test_namespace_examples/40_8calculation_boolean.md index c74960f..6b92e76 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean.md +++ b/tests/results/test_namespace_examples/40_8calculation_boolean.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.md b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.md index 0cdd338..62e44bf 100644 --- a/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.md +++ b/tests/results/test_namespace_examples/40_8calculation_boolean_return_none.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_integer.md b/tests/results/test_namespace_examples/40_8calculation_integer.md index 65b6b85..2390963 100644 --- a/tests/results/test_namespace_examples/40_8calculation_integer.md +++ b/tests/results/test_namespace_examples/40_8calculation_integer.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable.md index 46fe125..cb28542 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.md index be75058..c3206f3 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.md index 48939a5..66ddf87 100644 --- a/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.md +++ b/tests/results/test_namespace_examples/40_8calculation_multi_variable_parent2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.md index 2044d04..0102956 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.md index 2044d04..0102956 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.md index 6673786..1522ee6 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.md index ad0bf7c..b3c2ca0 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-first.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.md index 387730b..6cdd079 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader-last.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.md index 2c1784e..9c7ec35 100644 --- a/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.md +++ b/tests/results/test_namespace_examples/40_9leadership-calculation-outside-leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/41_0choice_leader.md b/tests/results/test_namespace_examples/41_0choice_leader.md index 541cae0..e4a281a 100644 --- a/tests/results/test_namespace_examples/41_0choice_leader.md +++ b/tests/results/test_namespace_examples/41_0choice_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_0leadership_hidden.md b/tests/results/test_namespace_examples/44_0leadership_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/44_0leadership_hidden.md +++ b/tests/results/test_namespace_examples/44_0leadership_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/44_0leadership_leader_hidden.md b/tests/results/test_namespace_examples/44_0leadership_leader_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/44_0leadership_leader_hidden.md +++ b/tests/results/test_namespace_examples/44_0leadership_leader_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace_examples/44_1leadership_append_hidden_follower.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/44_1leadership_append_hidden_follower.md +++ b/tests/results/test_namespace_examples/44_1leadership_append_hidden_follower.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.md b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.md index 3edc152..1fa2987 100644 --- a/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.md +++ b/tests/results/test_namespace_examples/44_4disabled_calcultion_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory.md b/tests/results/test_namespace_examples/44_4leadership_mandatory.md index 1f39965..d7883b2 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory.md +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.md b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.md index d11954d..0f83ae2 100644 --- a/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.md +++ b/tests/results/test_namespace_examples/44_4leadership_mandatory_follower.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.md index 9261697..efe7424 100644 --- a/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.md +++ b/tests/results/test_namespace_examples/44_5leadership_leader_hidden_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.md index 3de38b6..5ce0063 100644 --- a/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.md +++ b/tests/results/test_namespace_examples/44_6leadership_follower_disabled_calculation.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.md index ca38d47..b3dd4b0 100644 --- a/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.md +++ b/tests/results/test_namespace_examples/44_9calculated_default_leadership_leader.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic.md b/tests/results/test_namespace_examples/60_0family_dynamic.md index 16c05a3..60bd77d 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.md index 43dabb3..959bc12 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.md index 43dabb3..959bc12 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.md index d17b8d3..34ac503 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.md index d17b8d3..34ac503 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_0_type_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.md index d17b8d3..34ac503 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.md index d17b8d3..34ac503 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_1_1_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_empty.md index c686f3f..2784866 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.md new file mode 100644 index 0000000..b0ed621 --- /dev/null +++ b/tests/results/test_namespace_examples/60_0family_dynamic_forbidden_char.md @@ -0,0 +1,15 @@ +# Example with all variables modifiable + +```yaml +--- +rougail: + var: + - val.1 + - val.2 + 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_number.md b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.md index 2ff9c5b..3041a17 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number_empty.md index 2ff9c5b..3041a17 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_jinja_number_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.md b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.md index 16c05a3..60bd77d 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.md index 16c05a3..60bd77d 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_no_description_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_static.md b/tests/results/test_namespace_examples/60_0family_dynamic_static.md index 4ccc58b..124364e 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_static.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_static.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_test.md b/tests/results/test_namespace_examples/60_0family_dynamic_test.md index 9bd1200..830a653 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_test.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_test.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.md index a0ebaca..f2098cd 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.md index 655bc85..d7d5337 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.md index e201610..08f907b 100644 --- a/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.md +++ b/tests/results/test_namespace_examples/60_0family_dynamic_variable_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_0family_empty.md b/tests/results/test_namespace_examples/60_0family_empty.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/60_0family_empty.md +++ b/tests/results/test_namespace_examples/60_0family_empty.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/60_0family_hidden.md b/tests/results/test_namespace_examples/60_0family_hidden.md index 3fc684d..e69de29 100644 --- a/tests/results/test_namespace_examples/60_0family_hidden.md +++ b/tests/results/test_namespace_examples/60_0family_hidden.md @@ -1,4 +0,0 @@ ---- -gitea: none -include_toc: true ---- diff --git a/tests/results/test_namespace_examples/60_0family_mode.md b/tests/results/test_namespace_examples/60_0family_mode.md index 8e7f0d8..21eda25 100644 --- a/tests/results/test_namespace_examples/60_0family_mode.md +++ b/tests/results/test_namespace_examples/60_0family_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.md b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.md index 24d9271..7a67be4 100644 --- a/tests/results/test_namespace_examples/60_1family_dynamic_jinja.md +++ b/tests/results/test_namespace_examples/60_1family_dynamic_jinja.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.md index bae6428..4ff1912 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.md index 7fd222b..6f79ae1 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md index 7fd222b..6f79ae1 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md index bae6428..4ff1912 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_jinja_fill_sub_group_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.md index dd6f60d..a039228 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.md index dd6f60d..a039228 100644 --- a/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.md +++ b/tests/results/test_namespace_examples/60_2family_dynamic_outside_calc_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.md index 89b47dc..048503b 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.md index 89b47dc..048503b 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.md index f5e474b..e9608e2 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.md index 4f988d7..15e517a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.md index 4f988d7..15e517a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.md index 4ccc58b..124364e 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_disabled.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.md index f5e474b..e9608e2 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.md index c2f0d05..529c9ca 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.md new file mode 100644 index 0000000..e9440b8 --- /dev/null +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_empty_3.md @@ -0,0 +1,24 @@ +# Example with mandatory variables not filled in + +```yaml +--- +rougail: + dynval1: + var: example + dynval2: + var: example +``` +# Example with all variables modifiable + +```yaml +--- +rougail: + var2: example + var1: + - val1 + - val2 + dynval1: + var: example + dynval2: + var: example +``` diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.md index 4f988d7..15e517a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.md index 4f988d7..15e517a 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_suffix_param_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.md index f5e474b..e9608e2 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.md index f5e474b..e9608e2 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_calc_variable_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.md index f245767..f416cca 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_hidden_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.md index f49f374..ae45428 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_unknown_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.md index fef3031..d75c0b4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.md index 0818ff3..340d54c 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.md index 0818ff3..340d54c 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside2_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.md index fef3031..d75c0b4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_1_0.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.md index fef3031..d75c0b4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.md index fef3031..d75c0b4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.md index fef3031..d75c0b4 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_jinja_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.md index c61e870..7ca3d5f 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_sub_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.md index deb5b82..565bc6b 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.md index deb5b82..565bc6b 100644 --- a/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.md +++ b/tests/results/test_namespace_examples/60_5family_dynamic_variable_outside_suffix_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside.md b/tests/results/test_namespace_examples/60_6family_dynamic_inside.md index a1931d1..a9e6841 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.md index a1931d1..a9e6841 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_inside_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.md b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.md index 112782e..85edcd9 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.md index 112782e..85edcd9 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_leadership_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.md index 5eecde4..226a61f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.md index 5eecde4..226a61f 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_1_0.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.md index 3df7c3d..da8bcd8 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.md index 3df7c3d..da8bcd8 100644 --- a/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.md +++ b/tests/results/test_namespace_examples/60_6family_dynamic_sub_dynamic_empty2.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic.md b/tests/results/test_namespace_examples/60_9extra_dynamic.md index 3ceb0d9..8ad65ad 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic.md +++ b/tests/results/test_namespace_examples/60_9extra_dynamic.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.md b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.md index ee95817..111628d 100644 --- a/tests/results/test_namespace_examples/60_9extra_dynamic_extra.md +++ b/tests/results/test_namespace_examples/60_9extra_dynamic_extra.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.md b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.md index 0aee517..eec15d0 100644 --- a/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.md +++ b/tests/results/test_namespace_examples/60_9family_dynamic_calc_both.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with mandatory variables not filled in ```yaml diff --git a/tests/results/test_namespace_examples/68_0family_leadership_mode.md b/tests/results/test_namespace_examples/68_0family_leadership_mode.md index 99ae9c2..0711789 100644 --- a/tests/results/test_namespace_examples/68_0family_leadership_mode.md +++ b/tests/results/test_namespace_examples/68_0family_leadership_mode.md @@ -1,7 +1,3 @@ ---- -gitea: none -include_toc: true ---- # Example with all variables modifiable ```yaml