Compare commits
No commits in common. "693050b19547e325ba8079c50affe49149abc9a5" and "53de7569ee1df554719489f6a3bdd9b98901c69e" have entirely different histories.
693050b195
...
53de7569ee
567 changed files with 4576 additions and 455 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 0.2.0a7 (2025-02-19)
|
||||
|
||||
### Fix
|
||||
|
||||
- with_family => without_family and with_example => example
|
||||
|
||||
## 0.2.0a6 (2025-02-17)
|
||||
|
||||
### Feat
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_doc"
|
||||
version = "0.2.0a7"
|
||||
version = "0.2.0a6"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output doc"
|
||||
|
|
|
|||
|
|
@ -82,15 +82,15 @@ doc:
|
|||
description: {_('Starting title level')}
|
||||
alternative_name: dt
|
||||
default: 1
|
||||
example:
|
||||
description: {_('Generate example')}
|
||||
negative_description: {_('Generate documentation')}
|
||||
with_example:
|
||||
description: {_('Display example in documentation')}
|
||||
negative_description: {_('Hide example in documentation')}
|
||||
alternative_name: de
|
||||
default: false
|
||||
without_family:
|
||||
with_family:
|
||||
description: {_('Do not add families in documentation')}
|
||||
negative_description: {_('Add families in documentation')}
|
||||
default: false
|
||||
default: true
|
||||
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.example = rougailconfig["doc.example"]
|
||||
self.with_family = not rougailconfig["doc.without_family"]
|
||||
self.with_example = rougailconfig["doc.with_example"]
|
||||
self.with_family = rougailconfig["doc.with_family"]
|
||||
self.informations = None
|
||||
try:
|
||||
groups.namespace
|
||||
|
|
@ -94,10 +94,9 @@ class RougailOutputDoc(Examples):
|
|||
def run(self) -> str:
|
||||
"""Print documentation in stdout"""
|
||||
self._tiramisu_to_internal_object()
|
||||
if not self.example:
|
||||
return_string = self.formater.run(self.informations, self.level)
|
||||
else:
|
||||
return_string = self.gen_doc_examples()
|
||||
return_string = self.formater.run(self.informations, self.level)
|
||||
if self.with_example:
|
||||
return_string += self.gen_doc_examples()
|
||||
return True, return_string
|
||||
|
||||
def print(self) -> None:
|
||||
|
|
@ -219,7 +218,7 @@ class RougailOutputDoc(Examples):
|
|||
variable,
|
||||
sub_informations,
|
||||
)
|
||||
if self.example:
|
||||
if self.with_example:
|
||||
self._add_examples(variable, sub_informations, leader)
|
||||
informations[name] = sub_informations
|
||||
if variable.isleader():
|
||||
|
|
@ -229,7 +228,7 @@ class RougailOutputDoc(Examples):
|
|||
def _parse_variable_follower_with_index(
|
||||
self, variable, name: str, informations: dict
|
||||
) -> None:
|
||||
if not self.example:
|
||||
if not self.with_example:
|
||||
return None
|
||||
informations[name]["example"][-1][variable.index()] = self._get_example(
|
||||
variable, informations[name], None
|
||||
|
|
@ -241,7 +240,7 @@ class RougailOutputDoc(Examples):
|
|||
) -> None:
|
||||
dynamic_variable = self.dynamic_paths[path]
|
||||
if "type" in dynamic_variable:
|
||||
if self.example:
|
||||
if self.with_example:
|
||||
dynamic_variable["example"].append(
|
||||
self._get_example(variable, dynamic_variable, leader)
|
||||
)
|
||||
|
|
|
|||
|
|
@ -30,8 +30,10 @@ 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 = self.formater.header()
|
||||
return_string = ""
|
||||
if self.examples_mandatories:
|
||||
return_string += self.formater.title(
|
||||
_("Example with mandatory variables not filled in"), self.level
|
||||
|
|
|
|||
|
|
@ -198,20 +198,16 @@ class CommonFormater:
|
|||
"""Transform to string"""
|
||||
msg = self.header()
|
||||
if dico:
|
||||
msg += self.dict_to_string(dico, level)
|
||||
msg += self.dict_to_string(dico, level + 1)
|
||||
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":
|
||||
if ori_level is None:
|
||||
ori_level = level
|
||||
level += 1
|
||||
msg += self.namespace_to_string(value["informations"], ori_level)
|
||||
msg += self.namespace_to_string(value["informations"], level)
|
||||
msg += self.dict_to_string(value["children"], level)
|
||||
else:
|
||||
if value["type"] == "variable":
|
||||
|
|
@ -229,7 +225,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
|
||||
_('Variables for "{0}"').format(self.family_description(dico)), level - 1
|
||||
)
|
||||
|
||||
def family_to_string(self, dico: dict, level: int) -> str:
|
||||
|
|
|
|||
10
tests/cmdline.adoc
Normal file
10
tests/cmdline.adoc
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfamily[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mfamily[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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mnew description[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mnew 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mnew description[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mnew description[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
@ -12,9 +11,8 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A variable.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma second family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mA family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mA 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,11 +1,9 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma 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,11 +1,9 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma 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,11 +1,9 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40madvanced[0m
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma 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,9 +7,8 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A variable.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
@ -21,8 +20,7 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m A first variable.
|
||||
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfamily[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mfamily[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,9 +7,8 @@
|
|||
[1;36;40mstring[0m [1;36;40mbasic[0m [1;36;40mmandatory[0m First variable.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
|
@ -23,8 +22,7 @@
|
|||
[1mExample[0m: string6
|
||||
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma sub family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
@ -43,9 +41,8 @@
|
|||
[1;33m • [0mthe value of the variable "family.var2".
|
||||
[1;33m [0m|
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
@ -67,8 +64,7 @@
|
|||
[1mExample[0m: string5
|
||||
|
||||
|
||||
|
||||
[1;4ma sub family[0m
|
||||
[1ma 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,16 +9,14 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
|
||||
[1;36;40mbasic[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: if condition is yes.
|
||||
|
||||
|
||||
[1;4mfamily.subfamily[0m
|
||||
[1mfamily.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,16 +9,14 @@
|
|||
[1mDefault[0m: true
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
|
||||
[1;36;40mstandard[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: when the variable "condition" has the value "true".
|
||||
|
||||
|
||||
[1;4ma subfamily[0m
|
||||
[1ma 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,16 +9,14 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mpossibly hidden family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mpossibly hidden family[0m
|
||||
|
||||
[1;36;40mbasic[0m [1;3;36;40mhidden[0m
|
||||
|
||||
[1mHidden[0m: if condition is yes.
|
||||
|
||||
|
||||
[1;4ma subfamily[0m
|
||||
[1ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mgeneral[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mgeneral[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
@ -14,14 +13,12 @@
|
|||
[1mDefault[0m: non
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mgeneral1[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mgeneral1[0m
|
||||
|
||||
[1;36;40mbasic[0m
|
||||
|
||||
|
||||
[1;4mgeneral1.leader[0m
|
||||
[1mgeneral1.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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mA leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mA 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,9 +9,8 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1mfirst family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4mfirst family[0m
|
||||
|
||||
[1;36;40mstandard[0m
|
||||
|
||||
|
|
@ -14,9 +13,8 @@
|
|||
[1mDefault[0m: no
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1msecond family[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4msecond 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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,6 +1,5 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ [1ma leadership[0m ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
[1;4ma 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`
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue