fix: with_family => without_family and with_example => example

This commit is contained in:
egarette@silique.fr 2025-02-19 08:39:44 +01:00
parent 53de7569ee
commit d927f60769
565 changed files with 448 additions and 4575 deletions

View file

@ -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

View file

@ -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)
)

View file

@ -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

View file

@ -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:

View file

@ -1,10 +0,0 @@
[cols="1a,1a"]
|====
| Variable | Description
|
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
My var1.
|====

View file

@ -54,7 +54,7 @@ My var8. +
**Choices**: the a.unknown.variable values.
|====
=== my var6
== my var6

View file

@ -1,4 +1,4 @@
=== family
== family
`basic` `__disabled__`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## family
# family
`basic` *`disabled`*

View file

@ -1,5 +1,6 @@
family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic disabled

View file

@ -1,4 +1,4 @@
=== new description
== new description
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## new description
# new description
`basic`

View file

@ -1,5 +1,6 @@
new description
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
new description ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== a family
== a family
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a family
# a family
`basic`

View file

@ -1,5 +1,6 @@
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== new description
== new description
`basic`
@ -12,7 +12,7 @@
A variable.
|====
=== a second family
== a second family
`basic`

View file

@ -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`

View file

@ -1,5 +1,6 @@
new description
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
new description ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic
@ -11,8 +12,9 @@
string basic mandatory A variable.
a second family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a second family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== A family
== A family
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## A family
# A family
`basic`

View file

@ -1,5 +1,6 @@
A family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
A family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,8 +1,8 @@
=== a family
== a family
`standard`
==== a sub family
=== a sub family
`standard`

View file

@ -2,11 +2,11 @@
gitea: none
include_toc: true
---
## a family
# a family
`standard`
### a sub family
## a sub family
`standard`

View file

@ -1,9 +1,11 @@
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard
a sub family
a sub family
standard

View file

@ -1,8 +1,8 @@
=== a family
== a family
`basic`
==== a sub family
=== a sub family
`basic`

View file

@ -2,11 +2,11 @@
gitea: none
include_toc: true
---
## a family
# a family
`basic`
### a sub family
## a sub family
`basic`

View file

@ -1,9 +1,11 @@
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic
a sub family
a sub family
basic

View file

@ -1,8 +1,8 @@
=== a family
== a family
`advanced`
==== a sub family
=== a sub family
`advanced`

View file

@ -2,11 +2,11 @@
gitea: none
include_toc: true
---
## a family
# a family
`advanced`
### a sub family
## a sub family
`advanced`

View file

@ -1,9 +1,11 @@
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
advanced
a sub family
a sub family
advanced

View file

@ -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`

View file

@ -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`

View file

@ -7,8 +7,9 @@
string basic mandatory A variable.
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic
@ -20,7 +21,8 @@
string basic mandatory A first variable.
a sub family
a sub family
basic

View file

@ -1,4 +1,4 @@
=== family
== family
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## family
# family
`basic`

View file

@ -1,5 +1,6 @@
family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -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`

View file

@ -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`

View file

@ -7,8 +7,9 @@
string basic mandatory First variable.
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic
@ -22,7 +23,8 @@
Example: string6
a sub family
a sub family
standard
@ -41,8 +43,9 @@
 • the value of the variable "family.var2".
 |
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard
@ -64,7 +67,8 @@
Example: string5
a sub family
a sub family
standard

View file

@ -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`

View file

@ -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`

View file

@ -9,14 +9,16 @@
Default: no
possibly hidden family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
possibly hidden family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic hidden
Hidden: if condition is yes.
family.subfamily
family.subfamily
basic

View file

@ -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`

View file

@ -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`

View file

@ -9,14 +9,16 @@
Default: true
possibly hidden family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
possibly hidden family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard hidden
Hidden: when the variable "condition" has the value "true".
a subfamily
a subfamily
standard

View file

@ -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`

View file

@ -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`

View file

@ -9,14 +9,16 @@
Default: no
possibly hidden family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
possibly hidden family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic hidden
Hidden: if condition is yes.
a subfamily
a subfamily
basic

View file

@ -1,4 +1,4 @@
=== a family
== a family
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a family
# a family
`basic`

View file

@ -1,5 +1,6 @@
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`basic`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`basic`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`basic`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== general
== general
`standard`
@ -13,11 +13,11 @@ No change. +
**Default**: non
|====
=== general1
== general1
`basic`
==== general1.leader
=== general1.leader
`basic`

View file

@ -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`

View file

@ -1,5 +1,6 @@
general
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
general ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard
@ -13,12 +14,14 @@
Default: non
general1
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
general1 ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic
general1.leader
general1.leader
basic

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`basic`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -1,4 +1,4 @@
=== A leadership
== A leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## A leadership
# A leadership
`basic`

View file

@ -1,5 +1,6 @@
A leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
A leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -9,7 +9,7 @@ A variable. +
**Default**: no
|====
=== a family
== a family
`standard`

View file

@ -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`

View file

@ -9,8 +9,9 @@
Default: no
a family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== first family
== first family
`standard`
@ -13,7 +13,7 @@ A variable. +
**Default**: no
|====
=== second family
== second family
`standard`

View file

@ -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`

View file

@ -1,5 +1,6 @@
first family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
first family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard
@ -13,8 +14,9 @@
Default: no
second family
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
second family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== a leadership
== a leadership
`standard`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## a leadership
# a leadership
`standard`

View file

@ -1,5 +1,6 @@
a leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
standard

View file

@ -1,4 +1,4 @@
=== The leadership
== The leadership
`basic`

View file

@ -2,7 +2,7 @@
gitea: none
include_toc: true
---
## The leadership
# The leadership
`basic`

View file

@ -1,5 +1,6 @@
The leadership
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
The leadership ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
basic

View file

@ -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