feat: use blockquote for family description
This commit is contained in:
parent
4f475be53e
commit
35c5c4d4b5
726 changed files with 2540 additions and 3649 deletions
|
|
@ -20,6 +20,7 @@ from typing import List
|
||||||
from html import escape
|
from html import escape
|
||||||
|
|
||||||
from ..utils import dump, CommonFormatter
|
from ..utils import dump, CommonFormatter
|
||||||
|
from ..i18n import _
|
||||||
|
|
||||||
|
|
||||||
class Formatter(CommonFormatter):
|
class Formatter(CommonFormatter):
|
||||||
|
|
@ -153,17 +154,22 @@ class Formatter(CommonFormatter):
|
||||||
def to_phrase(self, text: str) -> str:
|
def to_phrase(self, text: str) -> str:
|
||||||
return escape(text)
|
return escape(text)
|
||||||
|
|
||||||
def family_to_string(self, *args, **kwargs) -> List[str]:
|
def family_informations(self) -> str:
|
||||||
lst = super().family_to_string(*args, **kwargs)
|
info = self.bold(f"🛈 {_('Informations')}") # ℹ️
|
||||||
if self.name != 'github':
|
return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n"
|
||||||
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:
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
return "<br/>"
|
return "> " + line
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return "\\\n"
|
||||||
|
#
|
||||||
|
# def family_to_string(self, *args, **kwargs) -> List[str]:
|
||||||
|
# lst = super().family_to_string(*args, **kwargs)
|
||||||
|
# if self.name != 'github':
|
||||||
|
# return lst
|
||||||
|
# # remove the title
|
||||||
|
# ret = lst.pop(0)
|
||||||
|
# if lst:
|
||||||
|
# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n"
|
||||||
|
# return [ret]
|
||||||
|
|
|
||||||
|
|
@ -70,10 +70,10 @@ class Formatter(GithubFormatter):
|
||||||
def end_family_informations(self) -> str:
|
def end_family_informations(self) -> str:
|
||||||
return f"\n>>>\n"
|
return f"\n>>>\n"
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
return "<br/>"
|
return line
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
def family_informations_ends_line(self) -> str:
|
||||||
return "<br/>"
|
return "<br/>"
|
||||||
|
|
||||||
def table_header(self, lst):
|
def table_header(self, lst):
|
||||||
|
|
|
||||||
|
|
@ -310,12 +310,6 @@ class CommonFormatter:
|
||||||
ret_paths.append(self.bold(self.anchor(path, path)))
|
ret_paths.append(self.bold(self.anchor(path, path)))
|
||||||
return ret_paths
|
return ret_paths
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def table_header(
|
def table_header(
|
||||||
self,
|
self,
|
||||||
lst: list,
|
lst: list,
|
||||||
|
|
@ -356,11 +350,12 @@ class CommonFormatter:
|
||||||
informations = value["informations"]
|
informations = value["informations"]
|
||||||
msg.append(self.namespace_to_title(informations, ori_level))
|
msg.append(self.namespace_to_title(informations, ori_level))
|
||||||
msg.append(self.family_informations())
|
msg.append(self.family_informations())
|
||||||
msg.extend(self.display_paths(informations, {}, None))
|
msg.append(self.family_informations_ends_line().join([self.family_informations_starts_line(p) for p in self.display_paths(informations, {}, None)]))
|
||||||
msg.append(self.after_family_paths())
|
msg.append(self.family_informations_ends_line())
|
||||||
msg.append(
|
msg.append(
|
||||||
self.property_to_string(informations, {}, {})[1] + ENTER
|
self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1]) + self.family_informations_ends_line()
|
||||||
)
|
)
|
||||||
|
print(msg)
|
||||||
msg.append(self.end_family_informations())
|
msg.append(self.end_family_informations())
|
||||||
msg.extend(self.dict_to_dict(value["children"], level))
|
msg.extend(self.dict_to_dict(value["children"], level))
|
||||||
msg.append(self.end_namespace(ori_level))
|
msg.append(self.end_namespace(ori_level))
|
||||||
|
|
@ -394,12 +389,13 @@ class CommonFormatter:
|
||||||
|
|
||||||
def family_to_string(self, informations: dict, level: int) -> str:
|
def family_to_string(self, informations: dict, level: int) -> str:
|
||||||
"""manage other family type"""
|
"""manage other family type"""
|
||||||
|
ret = [self.title(self.get_description("family", informations, {}, None), level)]
|
||||||
msg = []
|
msg = []
|
||||||
fam_info = self.family_informations()
|
fam_info = self.family_informations()
|
||||||
if fam_info:
|
if fam_info:
|
||||||
msg.append(fam_info)
|
ret.append(fam_info)
|
||||||
msg.append(
|
msg.append(
|
||||||
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths()
|
self.join(self.display_paths(informations, {}, None))
|
||||||
)
|
)
|
||||||
helps = informations.get("help")
|
helps = informations.get("help")
|
||||||
if helps:
|
if helps:
|
||||||
|
|
@ -410,16 +406,20 @@ class CommonFormatter:
|
||||||
if property_str:
|
if property_str:
|
||||||
msg.append(property_str)
|
msg.append(property_str)
|
||||||
if calculated_properties:
|
if calculated_properties:
|
||||||
msg.append(
|
msg.append(self.join(calculated_properties)
|
||||||
self.join(calculated_properties)
|
|
||||||
)
|
)
|
||||||
if "identifier" in informations:
|
if "identifier" in informations:
|
||||||
msg.append(
|
msg.append(
|
||||||
self.section(_("Identifiers"), informations["identifier"])
|
self.section(_("Identifiers"), informations["identifier"], type_="family")
|
||||||
)
|
)
|
||||||
return [self.title(self.get_description("family", informations, {}, None), level),
|
ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in msg]) + self.end_family_informations())
|
||||||
self.after_family_properties().join(msg) + self.end_family_informations(),
|
return ret
|
||||||
]
|
|
||||||
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
|
return line
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return ENTER
|
||||||
|
|
||||||
def end_family(self, level: int) -> str:
|
def end_family(self, level: int) -> str:
|
||||||
return ""
|
return ""
|
||||||
|
|
@ -537,7 +537,7 @@ class CommonFormatter:
|
||||||
) -> list:
|
) -> list:
|
||||||
"""Collect string for the first column"""
|
"""Collect string for the first column"""
|
||||||
multi, properties = self.property_to_string(
|
multi, properties = self.property_to_string(
|
||||||
informations, calculated_properties, modified_attributes
|
informations, calculated_properties, modified_attributes,
|
||||||
)
|
)
|
||||||
first_col = [
|
first_col = [
|
||||||
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
||||||
|
|
@ -881,6 +881,7 @@ class CommonFormatter:
|
||||||
name: str,
|
name: str,
|
||||||
msg: str,
|
msg: str,
|
||||||
submessage: str = "",
|
submessage: str = "",
|
||||||
|
type_ = "variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Return something like Name: msg"""
|
"""Return something like Name: msg"""
|
||||||
submessage, msg = self.message_to_string(msg, submessage)
|
submessage, msg = self.message_to_string(msg, submessage)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
| Variable | Description |
|
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
||||||
| **empty**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | |
|
|
||||||
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
**<a id="family" name="family">family</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,9 @@
|
||||||
|
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation
|
**<a id="family" name="family">family</a>**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic` *`disabled`*
|
||||||
|:------------|
|
> **Disabled**: depends on a calculation
|
||||||
| **family**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>New description</summary>
|
<details><summary>New description</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# New description
|
# New description
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>Redefine help family ok.<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>Redefine help family ok.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> Redefine help family ok.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **family**<br/>Redefine help family ok.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>New description</summary>
|
<details><summary>New description</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family1" name="family1">family1</a>**<br/>`basic`
|
**<a id="family1" name="family1">family1</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
<details><summary>A second family</summary>
|
<details><summary>A second family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`basic`
|
**<a id="family2" name="family2">family2</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# New description
|
# New description
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family1**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family1**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -12,11 +10,9 @@
|
||||||
|
|
||||||
# A second family
|
# A second family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family2**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family2**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
**<a id="family" name="family">family</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,14 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`standard` |
|
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,14 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`advanced`
|
**<a id="family" name="family">family</a>**<br/>`advanced`
|
||||||
>>>
|
>>>
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`advanced`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`advanced`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,14 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `advanced`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`advanced` |
|
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `advanced`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`advanced` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,9 @@
|
||||||
|
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -16,11 +14,9 @@
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>my_family</summary>
|
<details><summary>my_family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# my_family
|
# my_family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **my_family**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **my_family**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>my_family</summary>
|
<details><summary>my_family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
**<a id="my_family" name="my_family">my_family</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# my_family
|
# my_family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **my_family**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **my_family**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`standard`
|
**<a id="family2" name="family2">family2</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
<details><summary>A sub family</summary>
|
<details><summary>A sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family2.subfamily" name="family2.subfamily">family2.subfamily</a>**<br/>`standard`
|
**<a id="family2.subfamily" name="family2.subfamily">family2.subfamily</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,9 @@
|
||||||
|
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -16,11 +14,9 @@
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -28,11 +24,9 @@
|
||||||
|
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family2**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family2**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -41,11 +35,9 @@
|
||||||
|
|
||||||
## A sub family
|
## A sub family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family2.subfamily**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family2.subfamily**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,12 @@
|
||||||
<details><summary>Possibly hidden family</summary>
|
<details><summary>Possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
||||||
>>>
|
>>>
|
||||||
<details><summary>subfamily</summary>
|
<details><summary>subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,16 @@
|
||||||
|
|
||||||
# Possibly hidden family
|
# Possibly hidden family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic` *`hidden`*
|
||||||
|:------------|
|
> **Hidden**: if condition is yes
|
||||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
|
||||||
|
|
||||||
## subfamily
|
## subfamily
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,12 @@
|
||||||
<details><summary>Possibly hidden family</summary>
|
<details><summary>Possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<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"
|
**<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>
|
<details><summary>A subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
**<a id="family.subfamily" name="family.subfamily">family.subfamily</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,16 @@
|
||||||
|
|
||||||
# Possibly hidden family
|
# Possibly hidden family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `standard` *`hidden`*
|
||||||
|:------------|
|
> **Hidden**: when the variable "condition" has the value "true"
|
||||||
| **family**<br/>`standard` *`hidden`*<br/>**Hidden**: when the variable "condition" has the value "true" |
|
|
||||||
|
|
||||||
## A subfamily
|
## A subfamily
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.subfamily**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **family.subfamily**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,12 @@
|
||||||
<details><summary>Possibly hidden family</summary>
|
<details><summary>Possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
**<a id="family" name="family">family</a>**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes
|
||||||
>>>
|
>>>
|
||||||
<details><summary>A subfamily</summary>
|
<details><summary>A subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="family.sub_family" name="family.sub_family">family.sub_family</a>**<br/>`basic`
|
**<a id="family.sub_family" name="family.sub_family">family.sub_family</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,16 @@
|
||||||
|
|
||||||
# Possibly hidden family
|
# Possibly hidden family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family**
|
||||||
| Informations |
|
> `basic` *`hidden`*
|
||||||
|:------------|
|
> **Hidden**: if condition is yes
|
||||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
|
||||||
|
|
||||||
## A subfamily
|
## A subfamily
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **family.sub_family**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **family.sub_family**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="general" name="general">general</a>**<br/>`basic`
|
**<a id="general" name="general">general</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **general**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **general**<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>general</summary>
|
<details><summary>general</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="general" name="general">general</a>**<br/>`standard`
|
**<a id="general" name="general">general</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||||
|
|
@ -12,12 +12,12 @@
|
||||||
<details><summary>general1</summary>
|
<details><summary>general1</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="general1" name="general1">general1</a>**<br/>`basic`
|
**<a id="general1" name="general1">general1</a>**<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
<details><summary>Leader</summary>
|
<details><summary>Leader</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="general1.leader" name="general1.leader">general1.leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="general1.leader" name="general1.leader">general1.leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# general
|
# general
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **general**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **general**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -12,19 +10,16 @@
|
||||||
|
|
||||||
# general1
|
# general1
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **general1**
|
||||||
| Informations |
|
> `basic`
|
||||||
|:------------|
|
|
||||||
| **general1**<br/>`basic` |
|
|
||||||
|
|
||||||
## Leader
|
## Leader
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **general1.leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **general1.leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,9 @@
|
||||||
|
|
||||||
# A family
|
# A family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **fam1**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **fam1**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>First family</summary>
|
<details><summary>First family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
<details><summary>Second family</summary>
|
<details><summary>Second family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="fam2" name="fam2">fam2</a>**<br/>`standard`
|
**<a id="fam2" name="fam2">fam2</a>**<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# First family
|
# First family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **fam1**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **fam1**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -12,11 +10,9 @@
|
||||||
|
|
||||||
# Second family
|
# Second family
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **fam2**
|
||||||
| Informations |
|
> `standard`
|
||||||
|:------------|
|
|
||||||
| **fam2**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>leader</summary>
|
<details><summary>leader</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# leader
|
# leader
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,10 @@
|
||||||
|
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership_1" name="leadership_1">leadership_1</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership_1" name="leadership_1">leadership_1</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<details><summary>A second leadership</summary>
|
<details><summary>A second leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership_2" name="leadership_2">leadership_2</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leadership_2" name="leadership_2">leadership_2</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership_1**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership_1**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -13,11 +12,10 @@
|
||||||
|
|
||||||
# A second leadership
|
# A second leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership_2**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leadership_2**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership_1" name="leadership_1">leadership_1</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leadership_1" name="leadership_1">leadership_1</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<details><summary>A second leadership</summary>
|
<details><summary>A second leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership_2" name="leadership_2">leadership_2</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leadership_2" name="leadership_2">leadership_2</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership_1**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leadership_1**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
@ -13,11 +12,10 @@
|
||||||
|
|
||||||
# A second leadership
|
# A second leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership_2**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leadership_2**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>The leadership</summary>
|
<details><summary>The leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# The leadership
|
# The leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
**<a id="leadership" name="leadership">leadership</a>**<br/>This family contains lists of variable blocks.<br/>`standard`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leadership**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `standard`
|
||||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
<br/>**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
**<a id="leader" name="leader">leader</a>**<br/>This family contains lists of variable blocks.<br/>`basic`
|
||||||
>>>
|
>>>
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
# A leadership
|
# A leadership
|
||||||
|
|
||||||
|
> 🛈 Informations
|
||||||
|
> **leader**
|
||||||
| Informations |
|
> This family contains lists of variable blocks.
|
||||||
|:------------|
|
> `basic`
|
||||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue