Compare commits

..

No commits in common. "693050b19547e325ba8079c50affe49149abc9a5" and "53de7569ee1df554719489f6a3bdd9b98901c69e" have entirely different histories.

567 changed files with 4576 additions and 455 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -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
View 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.
|====

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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
new description ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
new description
basic
@ -12,9 +11,8 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,11 +1,9 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,11 +1,9 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,11 +1,9 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,9 +7,8 @@
string basic mandatory A variable.
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
a family
basic
@ -21,8 +20,7 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,9 +7,8 @@
string basic mandatory First variable.
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
a family
basic
@ -23,8 +22,7 @@
Example: string6
a sub family
a sub family
standard
@ -43,9 +41,8 @@
 • the value of the variable "family.var2".
 |
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
a family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
a family
standard
@ -67,8 +64,7 @@
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,16 +9,14 @@
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,16 +9,14 @@
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,16 +9,14 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
general ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
general
standard
@ -14,14 +13,12 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,9 +9,8 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
first family ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
first family
standard
@ -14,9 +13,8 @@
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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,6 +1,5 @@
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
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`

Some files were not shown because too many files have changed in this diff Show more