fix: with_family => without_family and with_example => example
This commit is contained in:
parent
53de7569ee
commit
d927f60769
565 changed files with 448 additions and 4575 deletions
|
@ -82,15 +82,15 @@ doc:
|
|||
description: {_('Starting title level')}
|
||||
alternative_name: dt
|
||||
default: 1
|
||||
with_example:
|
||||
description: {_('Display example in documentation')}
|
||||
negative_description: {_('Hide example in documentation')}
|
||||
example:
|
||||
description: {_('Generate example')}
|
||||
negative_description: {_('Generate documentation')}
|
||||
alternative_name: de
|
||||
default: false
|
||||
with_family:
|
||||
without_family:
|
||||
description: {_('Do not add families in documentation')}
|
||||
negative_description: {_('Add families in documentation')}
|
||||
default: true
|
||||
default: false
|
||||
disabled_modes:
|
||||
description: {_('Disable documentation for variables with those modes')}
|
||||
multi: true
|
||||
|
|
|
@ -74,8 +74,8 @@ class RougailOutputDoc(Examples):
|
|||
self.formater = outputs[output]()
|
||||
self.level = rougailconfig["doc.title_level"]
|
||||
self.dynamic_paths = {}
|
||||
self.with_example = rougailconfig["doc.with_example"]
|
||||
self.with_family = rougailconfig["doc.with_family"]
|
||||
self.example = rougailconfig["doc.example"]
|
||||
self.with_family = not rougailconfig["doc.without_family"]
|
||||
self.informations = None
|
||||
try:
|
||||
groups.namespace
|
||||
|
@ -94,9 +94,10 @@ class RougailOutputDoc(Examples):
|
|||
def run(self) -> str:
|
||||
"""Print documentation in stdout"""
|
||||
self._tiramisu_to_internal_object()
|
||||
return_string = self.formater.run(self.informations, self.level)
|
||||
if self.with_example:
|
||||
return_string += self.gen_doc_examples()
|
||||
if not self.example:
|
||||
return_string = self.formater.run(self.informations, self.level)
|
||||
else:
|
||||
return_string = self.gen_doc_examples()
|
||||
return True, return_string
|
||||
|
||||
def print(self) -> None:
|
||||
|
@ -218,7 +219,7 @@ class RougailOutputDoc(Examples):
|
|||
variable,
|
||||
sub_informations,
|
||||
)
|
||||
if self.with_example:
|
||||
if self.example:
|
||||
self._add_examples(variable, sub_informations, leader)
|
||||
informations[name] = sub_informations
|
||||
if variable.isleader():
|
||||
|
@ -228,7 +229,7 @@ class RougailOutputDoc(Examples):
|
|||
def _parse_variable_follower_with_index(
|
||||
self, variable, name: str, informations: dict
|
||||
) -> None:
|
||||
if not self.with_example:
|
||||
if not self.example:
|
||||
return None
|
||||
informations[name]["example"][-1][variable.index()] = self._get_example(
|
||||
variable, informations[name], None
|
||||
|
@ -240,7 +241,7 @@ class RougailOutputDoc(Examples):
|
|||
) -> None:
|
||||
dynamic_variable = self.dynamic_paths[path]
|
||||
if "type" in dynamic_variable:
|
||||
if self.with_example:
|
||||
if self.example:
|
||||
dynamic_variable["example"].append(
|
||||
self._get_example(variable, dynamic_variable, leader)
|
||||
)
|
||||
|
|
|
@ -30,10 +30,8 @@ class Examples: # pylint: disable=no-member,too-few-public-methods
|
|||
|
||||
def gen_doc_examples(self):
|
||||
"""Return examples"""
|
||||
if not self.informations:
|
||||
self._tiramisu_to_internal_object()
|
||||
self._build_examples()
|
||||
return_string = ""
|
||||
return_string = self.formater.header()
|
||||
if self.examples_mandatories:
|
||||
return_string += self.formater.title(
|
||||
_("Example with mandatory variables not filled in"), self.level
|
||||
|
|
|
@ -198,16 +198,20 @@ class CommonFormater:
|
|||
"""Transform to string"""
|
||||
msg = self.header()
|
||||
if dico:
|
||||
msg += self.dict_to_string(dico, level + 1)
|
||||
msg += self.dict_to_string(dico, level)
|
||||
return msg
|
||||
|
||||
def dict_to_string(self, dico: dict, level: int) -> str:
|
||||
"""Parse the dict to transform to dict"""
|
||||
msg = ""
|
||||
table_datas = []
|
||||
ori_level = None
|
||||
for value in dico.values():
|
||||
if value["type"] == "namespace":
|
||||
msg += self.namespace_to_string(value["informations"], level)
|
||||
if ori_level is None:
|
||||
ori_level = level
|
||||
level += 1
|
||||
msg += self.namespace_to_string(value["informations"], ori_level)
|
||||
msg += self.dict_to_string(value["children"], level)
|
||||
else:
|
||||
if value["type"] == "variable":
|
||||
|
@ -225,7 +229,7 @@ class CommonFormater:
|
|||
def namespace_to_string(self, dico: dict, level: int) -> str:
|
||||
"""manage namespace family"""
|
||||
return self.title(
|
||||
_('Variables for "{0}"').format(self.family_description(dico)), level - 1
|
||||
_('Variables for "{0}"').format(self.family_description(dico)), level
|
||||
)
|
||||
|
||||
def family_to_string(self, dico: dict, level: int) -> str:
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||
My var1.
|
||||
|====
|
||||
|
|
@ -54,7 +54,7 @@ My var8. +
|
|||
**Choices**: the a.unknown.variable values.
|
||||
|====
|
||||
|
||||
=== my var6
|
||||
== my var6
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== family
|
||||
== family
|
||||
|
||||
`basic` `__disabled__`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## family
|
||||
# family
|
||||
|
||||
`basic` *`disabled`*
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mfamily[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfamily[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m [1;3;36;40mdisabled[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== new description
|
||||
== new description
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## new description
|
||||
# new description
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mnew description[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mnew description[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a family
|
||||
== a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== new description
|
||||
== new description
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
|||
A variable.
|
||||
|====
|
||||
|
||||
=== a second family
|
||||
== a second family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## new description
|
||||
# new description
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -10,7 +10,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **family1.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||
|
||||
## a second family
|
||||
# a second family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mnew description[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mnew description[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
@ -11,8 +12,9 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A variable.
|
||||
|
||||
|
||||
|
||||
[1;4ma second family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma second family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== A family
|
||||
== A family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## A family
|
||||
# A family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mA family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mA family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
=== a family
|
||||
== a family
|
||||
|
||||
`standard`
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`standard`
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
=== a family
|
||||
== a family
|
||||
|
||||
`basic`
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`basic`
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
=== a family
|
||||
== a family
|
||||
|
||||
`advanced`
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`advanced`
|
||||
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`advanced`
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`advanced`
|
||||
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40madvanced[0m
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40madvanced[0m
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
A variable.
|
||||
|====
|
||||
|
||||
=== a family
|
||||
== a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -22,7 +22,7 @@ A variable.
|
|||
A first variable.
|
||||
|====
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -14,7 +14,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **family.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -7,8 +7,9 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A variable.
|
||||
|
||||
|
||||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
@ -20,7 +21,8 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A first variable.
|
||||
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== family
|
||||
== family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## family
|
||||
# family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mfamily[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfamily[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
First variable.
|
||||
|====
|
||||
|
||||
=== a family
|
||||
== a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -23,7 +23,7 @@ A second variable. +
|
|||
**Example**: string6
|
||||
|====
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -41,7 +41,7 @@ Third variable. +
|
|||
* the value of the variable "family.var2".
|
||||
|====
|
||||
|
||||
=== a family
|
||||
== a family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -63,7 +63,7 @@ Var3. +
|
|||
**Example**: string5
|
||||
|====
|
||||
|
||||
==== a sub family
|
||||
=== a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
|
||||
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
@ -14,7 +14,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.<br/>**Example**: string6 |
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -22,7 +22,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Third variable.<br/>**Default**: <br/>- the value of the variable "var1".<br/>- the value of the variable "family.var2". |
|
||||
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -31,7 +31,7 @@ include_toc: true
|
|||
| **family2.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "family.var2". |
|
||||
| **family2.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Var3.<br/>**Default**: string4<br/>**Example**: string5 |
|
||||
|
||||
### a sub family
|
||||
## a sub family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -7,8 +7,9 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m First variable.
|
||||
|
||||
|
||||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
@ -22,7 +23,8 @@
|
|||
[1mExample[0m: string6
|
||||
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
@ -41,8 +43,9 @@
|
|||
[1;33m • [0mthe value of the variable "family.var2".
|
||||
[1;33m [0m|
|
||||
|
||||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
@ -64,7 +67,8 @@
|
|||
[1mExample[0m: string5
|
||||
|
||||
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;4ma sub family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -9,14 +9,14 @@ The variable use has condition. +
|
|||
**Default**: no
|
||||
|====
|
||||
|
||||
=== possibly hidden family
|
||||
== possibly hidden family
|
||||
|
||||
`basic` `__hidden__`
|
||||
|
||||
|
||||
**Hidden**: if condition is yes.
|
||||
|
||||
==== family.subfamily
|
||||
=== family.subfamily
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -6,13 +6,13 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
||||
|
||||
## possibly hidden family
|
||||
# possibly hidden family
|
||||
|
||||
`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes.
|
||||
|
||||
### family.subfamily
|
||||
## family.subfamily
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -9,14 +9,16 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: if condition is yes.
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
[1;4mfamily.subfamily[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -9,14 +9,14 @@ The variable use has condition. +
|
|||
**Default**: true
|
||||
|====
|
||||
|
||||
=== possibly hidden family
|
||||
== possibly hidden family
|
||||
|
||||
`standard` `__hidden__`
|
||||
|
||||
|
||||
**Hidden**: when the variable "condition" has the value "true".
|
||||
|
||||
==== a subfamily
|
||||
=== a subfamily
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -6,13 +6,13 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: true |
|
||||
|
||||
## possibly hidden family
|
||||
# possibly hidden family
|
||||
|
||||
`standard` *`hidden`*
|
||||
|
||||
**Hidden**: when the variable "condition" has the value "true".
|
||||
|
||||
### a subfamily
|
||||
## a subfamily
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -9,14 +9,16 @@
|
|||
[1mDefault[0m: true
|
||||
|
||||
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: when the variable "condition" has the value "true".
|
||||
|
||||
[1ma subfamily[0m
|
||||
|
||||
[1;4ma subfamily[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -9,14 +9,14 @@ The variable use has condition. +
|
|||
**Default**: no
|
||||
|====
|
||||
|
||||
=== possibly hidden family
|
||||
== possibly hidden family
|
||||
|
||||
`basic` `__hidden__`
|
||||
|
||||
|
||||
**Hidden**: if condition is yes.
|
||||
|
||||
==== a subfamily
|
||||
=== a subfamily
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -6,13 +6,13 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
||||
|
||||
## possibly hidden family
|
||||
# possibly hidden family
|
||||
|
||||
`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes.
|
||||
|
||||
### a subfamily
|
||||
## a subfamily
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -9,14 +9,16 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: if condition is yes.
|
||||
|
||||
[1ma subfamily[0m
|
||||
|
||||
[1;4ma subfamily[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a family
|
||||
== a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== general
|
||||
== general
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -13,11 +13,11 @@ No change. +
|
|||
**Default**: non
|
||||
|====
|
||||
|
||||
=== general1
|
||||
== general1
|
||||
|
||||
`basic`
|
||||
|
||||
==== general1.leader
|
||||
=== general1.leader
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## general
|
||||
# general
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -10,11 +10,11 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **general.mode_conteneur_actif**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.<br/>**Default**: non |
|
||||
|
||||
## general1
|
||||
# general1
|
||||
|
||||
`basic`
|
||||
|
||||
### general1.leader
|
||||
## general1.leader
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mgeneral[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mgeneral[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
@ -13,12 +14,14 @@
|
|||
[1mDefault[0m: non
|
||||
|
||||
|
||||
|
||||
[1;4mgeneral1[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mgeneral1[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
[1mgeneral1.leader[0m
|
||||
|
||||
[1;4mgeneral1.leader[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== A leadership
|
||||
== A leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## A leadership
|
||||
# A leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mA leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mA leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ A variable. +
|
|||
**Default**: no
|
||||
|====
|
||||
|
||||
=== a family
|
||||
== a family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
||||
|
||||
## a family
|
||||
# a family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -9,8 +9,9 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
|
||||
[1;4ma family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== first family
|
||||
== first family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -13,7 +13,7 @@ A variable. +
|
|||
**Default**: no
|
||||
|====
|
||||
|
||||
=== second family
|
||||
== second family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## first family
|
||||
# first family
|
||||
|
||||
`standard`
|
||||
|
||||
|
@ -10,7 +10,7 @@ include_toc: true
|
|||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **fam1.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
||||
|
||||
## second family
|
||||
# second family
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mfirst family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfirst family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
@ -13,8 +14,9 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
|
||||
[1;4msecond family[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1msecond family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## a leadership
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4ma leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== The leadership
|
||||
== The leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
## The leadership
|
||||
# The leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
[1;4mThe leadership[0m
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mThe leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
=== a leadership
|
||||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue