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 ..utils import dump, CommonFormatter
|
||||
from ..i18n import _
|
||||
|
||||
|
||||
class Formatter(CommonFormatter):
|
||||
|
|
@ -153,17 +154,22 @@ class Formatter(CommonFormatter):
|
|||
def to_phrase(self, text: str) -> str:
|
||||
return escape(text)
|
||||
|
||||
def family_to_string(self, *args, **kwargs) -> List[str]:
|
||||
lst = super().family_to_string(*args, **kwargs)
|
||||
if self.name != 'github':
|
||||
return lst
|
||||
ret = lst.pop(0)
|
||||
if lst:
|
||||
content = "\n".join([l.strip() for l in lst]).strip()
|
||||
ret += "\n\n| Informations |\n"
|
||||
ret += "|:------------|\n"
|
||||
ret += "| " + content.replace("\n", "<br>") + " |\n\n"
|
||||
return [ret]
|
||||
def family_informations(self) -> str:
|
||||
info = self.bold(f"🛈 {_('Informations')}") # ℹ️
|
||||
return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n"
|
||||
|
||||
def after_family_properties(self) -> str:
|
||||
return "<br/>"
|
||||
def family_informations_starts_line(self, line: str) -> str:
|
||||
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:
|
||||
return f"\n>>>\n"
|
||||
|
||||
def after_family_paths(self) -> str:
|
||||
return "<br/>"
|
||||
def family_informations_starts_line(self, line: str) -> str:
|
||||
return line
|
||||
|
||||
def after_family_properties(self) -> str:
|
||||
def family_informations_ends_line(self) -> str:
|
||||
return "<br/>"
|
||||
|
||||
def table_header(self, lst):
|
||||
|
|
|
|||
|
|
@ -310,12 +310,6 @@ class CommonFormatter:
|
|||
ret_paths.append(self.bold(self.anchor(path, path)))
|
||||
return ret_paths
|
||||
|
||||
def after_family_paths(self) -> str:
|
||||
return ENTER
|
||||
|
||||
def after_family_properties(self) -> str:
|
||||
return ENTER
|
||||
|
||||
def table_header(
|
||||
self,
|
||||
lst: list,
|
||||
|
|
@ -356,11 +350,12 @@ class CommonFormatter:
|
|||
informations = value["informations"]
|
||||
msg.append(self.namespace_to_title(informations, ori_level))
|
||||
msg.append(self.family_informations())
|
||||
msg.extend(self.display_paths(informations, {}, None))
|
||||
msg.append(self.after_family_paths())
|
||||
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.family_informations_ends_line())
|
||||
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.extend(self.dict_to_dict(value["children"], level))
|
||||
msg.append(self.end_namespace(ori_level))
|
||||
|
|
@ -394,12 +389,13 @@ class CommonFormatter:
|
|||
|
||||
def family_to_string(self, informations: dict, level: int) -> str:
|
||||
"""manage other family type"""
|
||||
ret = [self.title(self.get_description("family", informations, {}, None), level)]
|
||||
msg = []
|
||||
fam_info = self.family_informations()
|
||||
if fam_info:
|
||||
msg.append(fam_info)
|
||||
ret.append(fam_info)
|
||||
msg.append(
|
||||
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths()
|
||||
self.join(self.display_paths(informations, {}, None))
|
||||
)
|
||||
helps = informations.get("help")
|
||||
if helps:
|
||||
|
|
@ -410,16 +406,20 @@ class CommonFormatter:
|
|||
if property_str:
|
||||
msg.append(property_str)
|
||||
if calculated_properties:
|
||||
msg.append(
|
||||
self.join(calculated_properties)
|
||||
msg.append(self.join(calculated_properties)
|
||||
)
|
||||
if "identifier" in informations:
|
||||
msg.append(
|
||||
self.section(_("Identifiers"), informations["identifier"])
|
||||
self.section(_("Identifiers"), informations["identifier"], type_="family")
|
||||
)
|
||||
return [self.title(self.get_description("family", informations, {}, None), level),
|
||||
self.after_family_properties().join(msg) + self.end_family_informations(),
|
||||
]
|
||||
ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in 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:
|
||||
return ""
|
||||
|
|
@ -537,7 +537,7 @@ class CommonFormatter:
|
|||
) -> list:
|
||||
"""Collect string for the first column"""
|
||||
multi, properties = self.property_to_string(
|
||||
informations, calculated_properties, modified_attributes
|
||||
informations, calculated_properties, modified_attributes,
|
||||
)
|
||||
first_col = [
|
||||
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
||||
|
|
@ -881,6 +881,7 @@ class CommonFormatter:
|
|||
name: str,
|
||||
msg: str,
|
||||
submessage: str = "",
|
||||
type_ = "variable",
|
||||
) -> str:
|
||||
"""Return something like Name: msg"""
|
||||
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>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
||||
**<a id="family" name="family">family</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,11 +5,9 @@
|
|||
|
||||
# family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`disabled`*<br/>**Disabled**: depends on a calculation |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic` *`disabled`*
|
||||
> **Disabled**: depends on a calculation
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>New description</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# New description
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>Redefine help family ok.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> Redefine help family ok.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>New description</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family1" name="family1">family1</a>**<br/>`basic`
|
||||
**<a id="family1" name="family1">family1</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
<details><summary>A second family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`basic`
|
||||
**<a id="family2" name="family2">family2</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# New description
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family1**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family1**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -12,11 +10,9 @@
|
|||
|
||||
# A second family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family2**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `standard`
|
||||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,18 +1,14 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`advanced` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `advanced`
|
||||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`advanced` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `advanced`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,11 +4,9 @@
|
|||
|
||||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -16,11 +14,9 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>my_family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# my_family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **my_family**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **my_family**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>my_family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# my_family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **my_family**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **my_family**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
**<a id="family" name="family">family</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="family2" name="family2">family2</a>**<br/>`standard`
|
||||
**<a id="family2" name="family2">family2</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
<details><summary>A sub family</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -4,11 +4,9 @@
|
|||
|
||||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -16,11 +14,9 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -28,11 +24,9 @@
|
|||
|
||||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family2**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -41,11 +35,9 @@
|
|||
|
||||
## A sub family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family2.subfamily**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family2.subfamily**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,19 +4,16 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic` *`hidden`*
|
||||
> **Hidden**: if condition is yes
|
||||
|
||||
## subfamily
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,19 +4,16 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`standard` *`hidden`*<br/>**Hidden**: when the variable "condition" has the value "true" |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `standard` *`hidden`*
|
||||
> **Hidden**: when the variable "condition" has the value "true"
|
||||
|
||||
## A subfamily
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.subfamily**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **family.subfamily**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@
|
|||
<details><summary>Possibly hidden family</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -4,19 +4,16 @@
|
|||
|
||||
# Possibly hidden family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family**<br/>`basic` *`hidden`*<br/>**Hidden**: if condition is yes |
|
||||
> 🛈 Informations
|
||||
> **family**
|
||||
> `basic` *`hidden`*
|
||||
> **Hidden**: if condition is yes
|
||||
|
||||
## A subfamily
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **family.sub_family**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **family.sub_family**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="general" name="general">general</a>**<br/>`basic`
|
||||
**<a id="general" name="general">general</a>**<br/>`basic`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **general**
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>general</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="general" name="general">general</a>**<br/>`standard`
|
||||
**<a id="general" name="general">general</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||
|
|
@ -12,12 +12,12 @@
|
|||
<details><summary>general1</summary>
|
||||
|
||||
>>> [!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>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# general
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **general**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -12,19 +10,16 @@
|
|||
|
||||
# general1
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general1**<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **general1**
|
||||
> `basic`
|
||||
|
||||
## Leader
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **general1.leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **general1.leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<details><summary>A family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||
**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -4,11 +4,9 @@
|
|||
|
||||
# A family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **fam1**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **fam1**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>First family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||
**<a id="fam1" name="fam1">fam1</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
<details><summary>Second family</summary>
|
||||
|
||||
>>> [!note] Informations
|
||||
<br/>**<a id="fam2" name="fam2">fam2</a>**<br/>`standard`
|
||||
**<a id="fam2" name="fam2">fam2</a>**<br/>`standard`
|
||||
>>>
|
||||
| Variable | Description |
|
||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
# First family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **fam1**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **fam1**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -12,11 +10,9 @@
|
|||
|
||||
# Second family
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **fam2**<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **fam2**
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>leader</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# leader
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -4,11 +4,10 @@
|
|||
|
||||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
<details><summary>A second leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership_1**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership_1**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -13,11 +12,10 @@
|
|||
|
||||
# A second leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership_2**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leadership_2**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
<details><summary>A second leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership_1**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leadership_1**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
@ -13,11 +12,10 @@
|
|||
|
||||
# A second leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership_2**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leadership_2**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>The leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# The leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leadership**<br/>This family contains lists of variable blocks.<br/>`standard` |
|
||||
> 🛈 Informations
|
||||
> **leadership**
|
||||
> This family contains lists of variable blocks.
|
||||
> `standard`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<details><summary>A leadership</summary>
|
||||
|
||||
>>> [!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 |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
# A leadership
|
||||
|
||||
|
||||
|
||||
| Informations |
|
||||
|:------------|
|
||||
| **leader**<br/>This family contains lists of variable blocks.<br/>`basic` |
|
||||
> 🛈 Informations
|
||||
> **leader**
|
||||
> This family contains lists of variable blocks.
|
||||
> `basic`
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue