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) ## 0.2.0a6 (2025-02-17)
### Feat ### Feat

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail.output_doc" name = "rougail.output_doc"
version = "0.2.0a7" version = "0.2.0a6"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "Rougail output doc" description = "Rougail output doc"

View file

@ -82,15 +82,15 @@ doc:
description: {_('Starting title level')} description: {_('Starting title level')}
alternative_name: dt alternative_name: dt
default: 1 default: 1
example: with_example:
description: {_('Generate example')} description: {_('Display example in documentation')}
negative_description: {_('Generate documentation')} negative_description: {_('Hide example in documentation')}
alternative_name: de alternative_name: de
default: false default: false
without_family: with_family:
description: {_('Do not add families in documentation')} description: {_('Do not add families in documentation')}
negative_description: {_('Add families in documentation')} negative_description: {_('Add families in documentation')}
default: false default: true
disabled_modes: disabled_modes:
description: {_('Disable documentation for variables with those modes')} description: {_('Disable documentation for variables with those modes')}
multi: true multi: true

View file

@ -74,8 +74,8 @@ class RougailOutputDoc(Examples):
self.formater = outputs[output]() self.formater = outputs[output]()
self.level = rougailconfig["doc.title_level"] self.level = rougailconfig["doc.title_level"]
self.dynamic_paths = {} self.dynamic_paths = {}
self.example = rougailconfig["doc.example"] self.with_example = rougailconfig["doc.with_example"]
self.with_family = not rougailconfig["doc.without_family"] self.with_family = rougailconfig["doc.with_family"]
self.informations = None self.informations = None
try: try:
groups.namespace groups.namespace
@ -94,10 +94,9 @@ class RougailOutputDoc(Examples):
def run(self) -> str: def run(self) -> str:
"""Print documentation in stdout""" """Print documentation in stdout"""
self._tiramisu_to_internal_object() self._tiramisu_to_internal_object()
if not self.example:
return_string = self.formater.run(self.informations, self.level) return_string = self.formater.run(self.informations, self.level)
else: if self.with_example:
return_string = self.gen_doc_examples() return_string += self.gen_doc_examples()
return True, return_string return True, return_string
def print(self) -> None: def print(self) -> None:
@ -219,7 +218,7 @@ class RougailOutputDoc(Examples):
variable, variable,
sub_informations, sub_informations,
) )
if self.example: if self.with_example:
self._add_examples(variable, sub_informations, leader) self._add_examples(variable, sub_informations, leader)
informations[name] = sub_informations informations[name] = sub_informations
if variable.isleader(): if variable.isleader():
@ -229,7 +228,7 @@ class RougailOutputDoc(Examples):
def _parse_variable_follower_with_index( def _parse_variable_follower_with_index(
self, variable, name: str, informations: dict self, variable, name: str, informations: dict
) -> None: ) -> None:
if not self.example: if not self.with_example:
return None return None
informations[name]["example"][-1][variable.index()] = self._get_example( informations[name]["example"][-1][variable.index()] = self._get_example(
variable, informations[name], None variable, informations[name], None
@ -241,7 +240,7 @@ class RougailOutputDoc(Examples):
) -> None: ) -> None:
dynamic_variable = self.dynamic_paths[path] dynamic_variable = self.dynamic_paths[path]
if "type" in dynamic_variable: if "type" in dynamic_variable:
if self.example: if self.with_example:
dynamic_variable["example"].append( dynamic_variable["example"].append(
self._get_example(variable, dynamic_variable, leader) 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): def gen_doc_examples(self):
"""Return examples""" """Return examples"""
if not self.informations:
self._tiramisu_to_internal_object()
self._build_examples() self._build_examples()
return_string = self.formater.header() return_string = ""
if self.examples_mandatories: if self.examples_mandatories:
return_string += self.formater.title( return_string += self.formater.title(
_("Example with mandatory variables not filled in"), self.level _("Example with mandatory variables not filled in"), self.level

View file

@ -198,20 +198,16 @@ class CommonFormater:
"""Transform to string""" """Transform to string"""
msg = self.header() msg = self.header()
if dico: if dico:
msg += self.dict_to_string(dico, level) msg += self.dict_to_string(dico, level + 1)
return msg return msg
def dict_to_string(self, dico: dict, level: int) -> str: def dict_to_string(self, dico: dict, level: int) -> str:
"""Parse the dict to transform to dict""" """Parse the dict to transform to dict"""
msg = "" msg = ""
table_datas = [] table_datas = []
ori_level = None
for value in dico.values(): for value in dico.values():
if value["type"] == "namespace": if value["type"] == "namespace":
if ori_level is None: msg += self.namespace_to_string(value["informations"], level)
ori_level = level
level += 1
msg += self.namespace_to_string(value["informations"], ori_level)
msg += self.dict_to_string(value["children"], level) msg += self.dict_to_string(value["children"], level)
else: else:
if value["type"] == "variable": if value["type"] == "variable":
@ -229,7 +225,7 @@ class CommonFormater:
def namespace_to_string(self, dico: dict, level: int) -> str: def namespace_to_string(self, dico: dict, level: int) -> str:
"""manage namespace family""" """manage namespace family"""
return self.title( 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: 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. **Choices**: the a.unknown.variable values.
|==== |====
== my var6 === my var6

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@
gitea: none gitea: none
include_toc: true include_toc: true
--- ---
# new description ## new description
`basic` `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. | | **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` `basic`

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -8,7 +8,7 @@
A variable. A variable.
|==== |====
== a family === a family
`basic` `basic`
@ -22,7 +22,7 @@ A variable.
A first variable. A first variable.
|==== |====
=== a sub family ==== a sub family
`basic` `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. | | **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
# a family ## a family
`basic` `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. | | **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` `basic`

View file

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

View file

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

View file

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

View file

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

View file

@ -8,7 +8,7 @@
First variable. First variable.
|==== |====
== a family === a family
`basic` `basic`
@ -23,7 +23,7 @@ A second variable. +
**Example**: string6 **Example**: string6
|==== |====
=== a sub family ==== a sub family
`standard` `standard`
@ -41,7 +41,7 @@ Third variable. +
* the value of the variable "family.var2". * the value of the variable "family.var2".
|==== |====
== a family === a family
`standard` `standard`
@ -63,7 +63,7 @@ Var3. +
**Example**: string5 **Example**: string5
|==== |====
=== a sub family ==== a sub family
`standard` `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. | | **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
# a family ## a family
`basic` `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 | | **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` `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". | | **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` `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.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 | | **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` `standard`

View file

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

View file

@ -9,14 +9,14 @@ The variable use has condition. +
**Default**: no **Default**: no
|==== |====
== possibly hidden family === possibly hidden family
`basic` `__hidden__` `basic` `__hidden__`
**Hidden**: if condition is yes. **Hidden**: if condition is yes.
=== family.subfamily ==== family.subfamily
`basic` `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 | | **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`* `basic` *`hidden`*
**Hidden**: if condition is yes. **Hidden**: if condition is yes.
## family.subfamily ### family.subfamily
`basic` `basic`

View file

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

View file

@ -9,14 +9,14 @@ The variable use has condition. +
**Default**: true **Default**: true
|==== |====
== possibly hidden family === possibly hidden family
`standard` `__hidden__` `standard` `__hidden__`
**Hidden**: when the variable "condition" has the value "true". **Hidden**: when the variable "condition" has the value "true".
=== a subfamily ==== a subfamily
`standard` `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 | | **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`* `standard` *`hidden`*
**Hidden**: when the variable "condition" has the value "true". **Hidden**: when the variable "condition" has the value "true".
## a subfamily ### a subfamily
`standard` `standard`

View file

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

View file

@ -9,14 +9,14 @@ The variable use has condition. +
**Default**: no **Default**: no
|==== |====
== possibly hidden family === possibly hidden family
`basic` `__hidden__` `basic` `__hidden__`
**Hidden**: if condition is yes. **Hidden**: if condition is yes.
=== a subfamily ==== a subfamily
`basic` `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 | | **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`* `basic` *`hidden`*
**Hidden**: if condition is yes. **Hidden**: if condition is yes.
## a subfamily ### a subfamily
`basic` `basic`

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -2,7 +2,7 @@
gitea: none gitea: none
include_toc: true include_toc: true
--- ---
# general ## general
`standard` `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 | | **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` `basic`
## general1.leader ### general1.leader
`basic` `basic`

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -9,7 +9,7 @@ A variable. +
**Default**: no **Default**: no
|==== |====
== a family === a family
`standard` `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 | | **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` `standard`

View file

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

View file

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

View file

@ -2,7 +2,7 @@
gitea: none gitea: none
include_toc: true include_toc: true
--- ---
# first family ## first family
`standard` `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 | | **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` `standard`

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

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