feat: better enter support
This commit is contained in:
parent
4b215ce407
commit
a400088e2d
1819 changed files with 5854 additions and 4642 deletions
|
|
@ -49,7 +49,7 @@ class Formatter(CommonFormatter):
|
|||
lst: List[str],
|
||||
) -> str:
|
||||
"""Display line in table from a list"""
|
||||
return self.enter_table.join(lst)
|
||||
return self.enter_table.join([l.replace("\n", self.enter_table) for l in lst])
|
||||
|
||||
def bold(
|
||||
self,
|
||||
|
|
@ -152,3 +152,18 @@ class Formatter(CommonFormatter):
|
|||
|
||||
def to_phrase(self, text: str) -> str:
|
||||
return escape(text)
|
||||
|
||||
def family_to_string(self, *args, **kwargs) -> List[str]:
|
||||
lst = super().family_to_string(*args, **kwargs)
|
||||
if self.name != 'github':
|
||||
return lst
|
||||
ret = lst.pop(0)
|
||||
if lst:
|
||||
content = "\n".join([l.strip() for l in lst]).strip()
|
||||
ret += "\n\n| Informations |\n"
|
||||
ret += "|:------------|\n"
|
||||
ret += "| " + content.replace("\n", "<br>") + " |\n\n"
|
||||
return [ret]
|
||||
|
||||
def after_family_properties(self) -> str:
|
||||
return "<br/>"
|
||||
|
|
|
|||
|
|
@ -71,10 +71,10 @@ class Formatter(GithubFormatter):
|
|||
return f"\n>>>\n"
|
||||
|
||||
def after_family_paths(self) -> str:
|
||||
return "<br>"
|
||||
return "<br/>"
|
||||
|
||||
def after_family_properties(self) -> str:
|
||||
return ""
|
||||
return "<br/>"
|
||||
|
||||
def table_header(self, lst):
|
||||
"""Manage the header of a table"""
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ class CommonFormatter:
|
|||
return ""
|
||||
|
||||
def end_family_informations(self) -> str:
|
||||
return ""
|
||||
return ENTER
|
||||
|
||||
def display_paths(
|
||||
self,
|
||||
|
|
@ -394,30 +394,32 @@ class CommonFormatter:
|
|||
|
||||
def family_to_string(self, informations: dict, level: int) -> str:
|
||||
"""manage other family type"""
|
||||
msg = [self.title(self.get_description("family", informations, {}, None), level)]
|
||||
msg = []
|
||||
fam_info = self.family_informations()
|
||||
if fam_info:
|
||||
msg.append(fam_info)
|
||||
msg.append(
|
||||
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths()
|
||||
)
|
||||
helps = informations.get("help")
|
||||
if helps:
|
||||
for help_ in helps:
|
||||
msg.append(self.display_family_help(help_.strip()))
|
||||
msg.append(self.family_informations())
|
||||
msg.append(
|
||||
self.join(self.display_paths(informations, {}, None)) + self.after_family_paths()
|
||||
)
|
||||
msg.append(to_phrase(help_.strip()))
|
||||
calculated_properties = []
|
||||
msg.append(
|
||||
self.property_to_string(informations, calculated_properties, {})[1] + ENTER
|
||||
)
|
||||
property_str = self.property_to_string(informations, calculated_properties, {})[1]
|
||||
if property_str:
|
||||
msg.append(property_str)
|
||||
if calculated_properties:
|
||||
msg.append(
|
||||
self.join(calculated_properties) + self.after_family_properties()
|
||||
self.join(calculated_properties)
|
||||
)
|
||||
if "identifier" in informations:
|
||||
msg.append(
|
||||
self.section(_("Identifiers"), informations["identifier"])
|
||||
+ self.after_family_properties()
|
||||
)
|
||||
msg.append(self.end_family_informations())
|
||||
return msg
|
||||
return [self.title(self.get_description("family", informations, {}, None), level),
|
||||
self.after_family_properties().join(msg) + self.end_family_informations(),
|
||||
]
|
||||
|
||||
def end_family(self, level: int) -> str:
|
||||
return ""
|
||||
|
|
@ -760,9 +762,6 @@ class CommonFormatter:
|
|||
def to_phrase(self, text: str) -> str:
|
||||
return text
|
||||
|
||||
def display_family_help(self, help_):
|
||||
return self.to_phrase(help_) + ENTER
|
||||
|
||||
def property_to_string(
|
||||
self,
|
||||
informations: dict,
|
||||
|
|
|
|||
|
|
@ -55,12 +55,10 @@ My var8. +
|
|||
|
||||
== My var9
|
||||
|
||||
This family builds families dynamically
|
||||
|
||||
|
||||
**var___example__**
|
||||
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
**Identifiers**: the value of the variable "a.unknown.variable"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,6 @@
|
|||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: value
|
||||
of
|
||||
a
|
||||
variable! |
|
||||
| **<a id="var3" name="var3">var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|
|
||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: value<br/>of<br/>a<br/>variable! |
|
||||
| **<a id="var3" name="var3">var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,6 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: value
|
||||
of
|
||||
a
|
||||
variable! |
|
||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: value<br/>of<br/>a<br/>variable! |
|
||||
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A new variable. |
|
||||
|
||||
|
|
|
|||
|
|
@ -6,9 +6,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,9 +5,11 @@
|
|||
|
||||
# family
|
||||
|
||||
**family**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -17,14 +17,11 @@
|
|||
[1;4;96mfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
30
tests/results/test/01_6string_multi_length.adoc
Normal file
30
tests/results/test/01_6string_multi_length.adoc
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The variable. +
|
||||
**Validator**: needs exactly 3 values +
|
||||
**Default**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
* val3
|
||||
|
|
||||
|
||||
**var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The variable. +
|
||||
**Validators**:
|
||||
|
||||
* needs a minimum of 1 values
|
||||
* needs a maximum of 4 values
|
||||
|
||||
**Default**:
|
||||
|
||||
* val4
|
||||
* val5
|
||||
|====
|
||||
|
||||
5
tests/results/test/01_6string_multi_length.gitlab.md
Normal file
5
tests/results/test/01_6string_multi_length.gitlab.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
| Variable | Description |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.<br/>**Validator**: needs exactly 3 values<br/>**Default**: <br/>- val1<br/>- val2<br/>- val3 |
|
||||
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.<br/>**Validators**: <br/>- needs a minimum of 1 values<br/>- needs a maximum of 4 values<br/>**Default**: <br/>- val4<br/>- val5 |
|
||||
|
||||
14
tests/results/test/01_6string_multi_length.html
Normal file
14
tests/results/test/01_6string_multi_length.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr><th>Variable </th><th>Description </th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><b>var1</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> <mark>unique</mark> <mark>multiple</mark></td><td>The variable.<br/><b>Validator</b>: needs exactly 3 values<br/><b>Default</b>: <ul><li>val1</li>
|
||||
<li>val2</li>
|
||||
<li>val3</li></ul> </td></tr>
|
||||
<tr><td><b>var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> <mark>unique</mark> <mark>multiple</mark></td><td>The variable.<br/><b>Validators</b>: <ul><li>needs a minimum of 1 values</li>
|
||||
<li>needs a maximum of 4 values</li></ul><br/><b>Default</b>: <ul><li>val4</li>
|
||||
<li>val5</li></ul> </td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
103
tests/results/test/01_6string_multi_length.json
Normal file
103
tests/results/test/01_6string_multi_length.json
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
{
|
||||
"var1": {
|
||||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"val1",
|
||||
"val2",
|
||||
"val3"
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"validators": {
|
||||
"name": "Validator",
|
||||
"values": "needs exactly 3 values"
|
||||
},
|
||||
"path": "var1",
|
||||
"names": [
|
||||
"var1"
|
||||
],
|
||||
"description": "The variable.",
|
||||
"gen_examples": [
|
||||
[
|
||||
"val1",
|
||||
"val2",
|
||||
"val3"
|
||||
]
|
||||
],
|
||||
"mandatory_without_value": false
|
||||
},
|
||||
"var2": {
|
||||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"val4",
|
||||
"val5"
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"validators": {
|
||||
"name": "Validators",
|
||||
"values": [
|
||||
"needs a minimum of 1 values",
|
||||
"needs a maximum of 4 values"
|
||||
]
|
||||
},
|
||||
"path": "var2",
|
||||
"names": [
|
||||
"var2"
|
||||
],
|
||||
"description": "The variable.",
|
||||
"gen_examples": [
|
||||
[
|
||||
"val4",
|
||||
"val5"
|
||||
]
|
||||
],
|
||||
"mandatory_without_value": false
|
||||
}
|
||||
}
|
||||
5
tests/results/test/01_6string_multi_length.md
Normal file
5
tests/results/test/01_6string_multi_length.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.<br/>**Validator**: needs exactly 3 values<br/>**Default**: <br/>- val1<br/>- val2<br/>- val3 |
|
||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The variable.<br/>**Validators**: <br/>- needs a minimum of 1 values<br/>- needs a maximum of 4 values<br/>**Default**: <br/>- val4<br/>- val5 |
|
||||
|
||||
18
tests/results/test/01_6string_multi_length.sh
Normal file
18
tests/results/test/01_6string_multi_length.sh
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar1[0m │ The variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidator[0m: needs exactly 3 values │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ [1mDefault[0m: │
|
||||
│ │ - val1 │
|
||||
│ │ - val2 │
|
||||
│ │ - val3 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mvar2[0m │ The variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidators[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - needs a minimum of 1 values │
|
||||
│ │ - needs a maximum of 4 values │
|
||||
│ │ [1mDefault[0m: │
|
||||
│ │ - val4 │
|
||||
│ │ - val5 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic` *`disabled`*
|
||||
|
||||
**Disabled**: depends on a calculation
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# family
|
||||
|
||||
**family**
|
||||
|
||||
`basic` *`disabled`*
|
||||
|
||||
**Disabled**: depends on a calculation
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m [1;7m [0m[1;3;7mdisabled[0m[1;7m [0m
|
||||
|
||||
|
||||
[1mDisabled[0m: depends on a calculation
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>New description</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# New description
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mNew description[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A family
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
|
||||
**family**
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
`basic`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>Redefine help family ok.<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A family</h1>
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
<b>family</b>
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
<mark>basic</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A family
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>Redefine help family ok.<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
Redefine help family ok.
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>New description</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family1" name="family1">family1</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family1" name="family1">family1</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
@ -14,9 +12,7 @@
|
|||
<details><summary>A second family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family2" name="family2">family2</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# New description
|
||||
|
||||
**family1**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family1**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -10,9 +12,11 @@
|
|||
|
||||
# A second family
|
||||
|
||||
**family2**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mNew description[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily1[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
@ -23,14 +20,11 @@
|
|||
[1;4;96mA second family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily2[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,16 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
||||
>>>
|
||||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,14 +1,18 @@
|
|||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` |
|
||||
|
||||
## A sub family
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,27 +3,21 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,16 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,14 +1,18 @@
|
|||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
## A sub family
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,27 +3,21 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,16 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`advanced`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`advanced`
|
||||
>>>
|
||||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`advanced`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`advanced`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,14 +1,18 @@
|
|||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`advanced`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`advanced` |
|
||||
|
||||
## A sub family
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`advanced`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`advanced` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,27 +3,21 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m advanced [0m
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m advanced [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||
|
|
@ -16,9 +14,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,9 +4,11 @@
|
|||
|
||||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -14,9 +16,11 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -9,14 +9,11 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
@ -28,14 +25,11 @@
|
|||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>my_family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="my_family" name="my_family">my_family</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# my_family
|
||||
|
||||
**my_family**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **my_family**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mmy_family[0m
|
||||
|
||||
|
||||
|
||||
[1mmy_family[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>my_family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="my_family" name="my_family">my_family</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# my_family
|
||||
|
||||
**my_family**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **my_family**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mmy_family[0m
|
||||
|
||||
|
||||
|
||||
[1mmy_family[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
||||
|
|
@ -16,9 +14,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -31,9 +27,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family2" name="family2">family2</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
||||
|
|
@ -43,9 +37,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family2.subfamily" name="family2.subfamily">family2.subfamily</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family2.subfamily" name="family2.subfamily">family2.subfamily</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -4,9 +4,11 @@
|
|||
|
||||
# A family
|
||||
|
||||
**family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -14,9 +16,11 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -24,9 +28,11 @@
|
|||
|
||||
# A family
|
||||
|
||||
**family2**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -35,9 +41,11 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
**family2.subfamily**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2.subfamily**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -9,14 +9,11 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
@ -28,14 +25,11 @@
|
|||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
@ -52,14 +46,11 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily2[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
@ -75,14 +66,11 @@
|
|||
[1;4;92mA sub family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily2.subfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -5,16 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
||||
>>>
|
||||
<details><summary>subfamily</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,17 +4,19 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
**family**
|
||||
|
||||
`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
||||
|
||||
## subfamily
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -9,30 +9,23 @@
|
|||
[1;4;96mPossibly hidden family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
|
||||
|
||||
|
||||
[1mHidden[0m: if condition is yes
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92msubfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -5,16 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`standard` *`hidden`*
|
||||
|
||||
**Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true"
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard` *`hidden`*<br/>**Hidden**: when the variable "[`The variable use has condition`](#condition)" has the value "true"
|
||||
>>>
|
||||
<details><summary>A subfamily</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,17 +4,19 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
**family**
|
||||
|
||||
`standard` *`hidden`*
|
||||
|
||||
**Hidden**: when the variable "condition" has the value "true"
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` *`hidden`*<br/>**Hidden**: when the variable "condition" has the value "true" |
|
||||
|
||||
## A subfamily
|
||||
|
||||
**family.subfamily**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -9,30 +9,23 @@
|
|||
[1;4;96mPossibly hidden family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
|
||||
|
||||
|
||||
[1mHidden[0m: when the variable [32m"condition"[0m has the value [32m"true"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mA subfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.subfamily[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -5,16 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family" name="family">family</a>**<br>`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
||||
>>>
|
||||
<details><summary>A subfamily</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="family.sub_family" name="family.sub_family">family.sub_family</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="family.sub_family" name="family.sub_family">family.sub_family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,17 +4,19 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
**family**
|
||||
|
||||
`basic` *`hidden`*
|
||||
|
||||
**Hidden**: if condition is yes
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
||||
|
||||
## A subfamily
|
||||
|
||||
**family.sub_family**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.sub_family**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -9,30 +9,23 @@
|
|||
[1;4;96mPossibly hidden family[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily[0m
|
||||
|
||||
|
||||
[1;7m basic [0m [1;7m [0m[1;3;7mhidden[0m[1;7m [0m
|
||||
|
||||
|
||||
[1mHidden[0m: if condition is yes
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mA subfamily[0m
|
||||
|
||||
|
||||
|
||||
[1mfamily.sub_family[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="general" name="general">general</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="general" name="general">general</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# A family
|
||||
|
||||
**general**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general**<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,14 +3,11 @@
|
|||
[1;4;96mA family[0m
|
||||
|
||||
|
||||
|
||||
[1mgeneral[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**leader**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`basic`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="leader" name="leader">leader</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A leadership</h1>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>leader</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>basic</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**leader**
|
||||
|
||||
`basic`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA leadership[0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
|
||||
[1mleader[0m
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**leadership**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`basic`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="leadership" name="leadership">leadership</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A leadership</h1>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>leadership</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>basic</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**leadership**
|
||||
|
||||
`basic`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA leadership[0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
|
||||
[1mleadership[0m
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**leader**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`basic`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="leader" name="leader">leader</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A leadership</h1>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>leader</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>basic</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**leader**
|
||||
|
||||
`basic`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA leadership[0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
|
||||
[1mleader[0m
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**leader**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`standard`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="leader" name="leader">leader</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A leadership</h1>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>leader</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>standard</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**leader**
|
||||
|
||||
`standard`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA leadership[0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
|
||||
[1mleader[0m
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
== A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**leadership**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`standard`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="leadership" name="leadership">leadership</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<h1>A leadership</h1>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>leadership</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>standard</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# A leadership
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**leadership**
|
||||
|
||||
`standard`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -3,17 +3,13 @@
|
|||
[1;4;96mA leadership[0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
|
||||
[1mleadership[0m
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
|
|
|
|||
|
|
@ -25,11 +25,11 @@ No change. +
|
|||
|
||||
=== Leader
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
|
||||
**general1.leader**
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
`basic`
|
||||
|
||||
[cols="1a,1a"]
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<details><summary>general</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="general" name="general">general</a>**<br>`standard`
|
||||
|
||||
|
||||
<br/>**<a id="general" name="general">general</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||
|
|
@ -14,18 +12,12 @@
|
|||
<details><summary>general1</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="general1" name="general1">general1</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="general1" name="general1">general1</a>**<br/>`basic`
|
||||
>>>
|
||||
<details><summary>Leader</summary>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
>>> [!note] Informations
|
||||
**<a id="general1.leader" name="general1.leader">general1.leader</a>**<br>`basic`
|
||||
|
||||
|
||||
<br/>**<a id="general1.leader" name="general1.leader">general1.leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -21,10 +21,10 @@
|
|||
|
||||
<h2>Leader</h2>
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
<b>general1.leader</b>
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
<mark>basic</mark>
|
||||
|
||||
<table>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
# general
|
||||
|
||||
**general**
|
||||
|
||||
`standard`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general**<br/>`standard` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -10,17 +12,19 @@
|
|||
|
||||
# general1
|
||||
|
||||
**general1**
|
||||
|
||||
`basic`
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general1**<br/>`basic` |
|
||||
|
||||
## Leader
|
||||
|
||||
This family contains lists of variable blocks
|
||||
|
||||
**general1.leader**
|
||||
|
||||
`basic`
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general1.leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue