feat: use blockquote for family description

This commit is contained in:
egarette@silique.fr 2025-11-12 19:33:56 +01:00
parent 4f475be53e
commit 3503b25869
5942 changed files with 31499 additions and 50733 deletions

View file

@ -20,6 +20,7 @@ from typing import List
from html import escape from html import escape
from ..utils import dump, CommonFormatter from ..utils import dump, CommonFormatter
from ..i18n import _
class Formatter(CommonFormatter): class Formatter(CommonFormatter):
@ -153,17 +154,22 @@ class Formatter(CommonFormatter):
def to_phrase(self, text: str) -> str: def to_phrase(self, text: str) -> str:
return escape(text) return escape(text)
def family_to_string(self, *args, **kwargs) -> List[str]: def family_informations(self) -> str:
lst = super().family_to_string(*args, **kwargs) info = self.bold(f"🛈 {_('Informations')}") #
if self.name != 'github': return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n"
return lst
ret = lst.pop(0)
if lst:
content = "\n".join([l.strip() for l in lst]).strip()
ret += "\n\n| Informations |\n"
ret += "|:------------|\n"
ret += "| " + content.replace("\n", "<br>") + " |\n\n"
return [ret]
def after_family_properties(self) -> str: def family_informations_starts_line(self, line: str) -> str:
return "<br/>" return "> " + line
def family_informations_ends_line(self) -> str:
return "\\\n"
#
# def family_to_string(self, *args, **kwargs) -> List[str]:
# lst = super().family_to_string(*args, **kwargs)
# if self.name != 'github':
# return lst
# # remove the title
# ret = lst.pop(0)
# if lst:
# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n"
# return [ret]

View file

@ -70,10 +70,10 @@ class Formatter(GithubFormatter):
def end_family_informations(self) -> str: def end_family_informations(self) -> str:
return f"\n>>>\n" return f"\n>>>\n"
def after_family_paths(self) -> str: def family_informations_starts_line(self, line: str) -> str:
return "<br/>" return line
def after_family_properties(self) -> str: def family_informations_ends_line(self) -> str:
return "<br/>" return "<br/>"
def table_header(self, lst): def table_header(self, lst):

View file

@ -310,12 +310,6 @@ class CommonFormatter:
ret_paths.append(self.bold(self.anchor(path, path))) ret_paths.append(self.bold(self.anchor(path, path)))
return ret_paths return ret_paths
def after_family_paths(self) -> str:
return ENTER
def after_family_properties(self) -> str:
return ENTER
def table_header( def table_header(
self, self,
lst: list, lst: list,
@ -356,11 +350,12 @@ class CommonFormatter:
informations = value["informations"] informations = value["informations"]
msg.append(self.namespace_to_title(informations, ori_level)) msg.append(self.namespace_to_title(informations, ori_level))
msg.append(self.family_informations()) msg.append(self.family_informations())
msg.extend(self.display_paths(informations, {}, None)) msg.append(self.family_informations_ends_line().join([self.family_informations_starts_line(p) for p in self.display_paths(informations, {}, None)]))
msg.append(self.after_family_paths()) msg.append(self.family_informations_ends_line())
msg.append( msg.append(
self.property_to_string(informations, {}, {})[1] + ENTER self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1]) + self.family_informations_ends_line()
) )
print(msg)
msg.append(self.end_family_informations()) msg.append(self.end_family_informations())
msg.extend(self.dict_to_dict(value["children"], level)) msg.extend(self.dict_to_dict(value["children"], level))
msg.append(self.end_namespace(ori_level)) msg.append(self.end_namespace(ori_level))
@ -394,12 +389,13 @@ class CommonFormatter:
def family_to_string(self, informations: dict, level: int) -> str: def family_to_string(self, informations: dict, level: int) -> str:
"""manage other family type""" """manage other family type"""
ret = [self.title(self.get_description("family", informations, {}, None), level)]
msg = [] msg = []
fam_info = self.family_informations() fam_info = self.family_informations()
if fam_info: if fam_info:
msg.append(fam_info) ret.append(fam_info)
msg.append( msg.append(
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths() self.join(self.display_paths(informations, {}, None))
) )
helps = informations.get("help") helps = informations.get("help")
if helps: if helps:
@ -410,16 +406,20 @@ class CommonFormatter:
if property_str: if property_str:
msg.append(property_str) msg.append(property_str)
if calculated_properties: if calculated_properties:
msg.append( msg.append(self.join(calculated_properties)
self.join(calculated_properties)
) )
if "identifier" in informations: if "identifier" in informations:
msg.append( msg.append(
self.section(_("Identifiers"), informations["identifier"]) self.section(_("Identifiers"), informations["identifier"], type_="family")
) )
return [self.title(self.get_description("family", informations, {}, None), level), ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in msg]) + self.end_family_informations())
self.after_family_properties().join(msg) + self.end_family_informations(), return ret
]
def family_informations_starts_line(self, line: str) -> str:
return line
def family_informations_ends_line(self) -> str:
return ENTER
def end_family(self, level: int) -> str: def end_family(self, level: int) -> str:
return "" return ""
@ -537,7 +537,7 @@ class CommonFormatter:
) -> list: ) -> list:
"""Collect string for the first column""" """Collect string for the first column"""
multi, properties = self.property_to_string( multi, properties = self.property_to_string(
informations, calculated_properties, modified_attributes informations, calculated_properties, modified_attributes,
) )
first_col = [ first_col = [
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)), self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
@ -881,6 +881,7 @@ class CommonFormatter:
name: str, name: str,
msg: str, msg: str,
submessage: str = "", submessage: str = "",
type_ = "variable",
) -> str: ) -> str:
"""Return something like Name: msg""" """Return something like Name: msg"""
submessage, msg = self.message_to_string(msg, submessage) submessage, msg = self.message_to_string(msg, submessage)

View file

@ -1,10 +1,7 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **version** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
**version** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
A variable.
|==== |====

View file

@ -1,10 +1,7 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **empty** +
**empty** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|==== |====

View file

@ -1,17 +1,11 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A first variable. +
**Default**: no **Default**: no
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: the value of var1 **Default**: the value of var1
|==== |====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A first variable. +
**Default**: **Default**:
* no * no
* yes * yes
* maybe * maybe
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: the value of _.var1 **Default**: the value of _.var1
|==== |====

View file

@ -3,9 +3,9 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ A first variable. │ var1 │ A first variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - no unique   multiple  │ • no
│ │ - yes │ │ • yes
│ │ - maybe │ │ • maybe
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ A second variable. │ var2 │ A second variable. │
 string   standard   mandatory    │ Default: the value of _.var1 │  string   standard   mandatory    │ Default: the value of _.var1 │

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: depends on a calculation **Default**: depends on a calculation
|==== |====

View file

@ -1,17 +1,11 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
A first variable. +
**Validator**: the domain name can be an IP **Validator**: the domain name can be an IP
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: the value of the variable "var1" **Default**: the value of the variable "var1"
|==== |====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
A first variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: value of a variable! **Default**: value of a variable!
|==== |====

View file

@ -1,24 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
A first variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: value **Default**: value
of of
a a
variable! variable!
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable.
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
A new variable.
|==== |====

View file

@ -1,17 +1,11 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
A first variable. +
**Validator**: the domain name can be an IP **Validator**: the domain name can be an IP
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Validator**: the domain name can be an IP + **Validator**: the domain name can be an IP +
**Default**: the value of the variable "var1" **Default**: the value of the variable "var1"
|==== |====

View file

@ -1,15 +1,9 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
A variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
A variable.
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **without_type** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**without_type** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: non **Default**: non
|==== |====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The first variable. +
**Default**: true **Default**: true
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The second variable. +
**Default**: true **Default**: true
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The third variable. +
**Default**: true **Default**: true
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The forth variable. +
**Default**: false **Default**: false
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The fifth variable. +
**Default**: false **Default**: false
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The sixth variable. +
**Default**: false **Default**: false
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` |
A variable. +
**Default**: true **Default**: true
|==== |====

View file

@ -1,62 +1,44 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
The first variable. +
**Choices**: **Choices**:
* a * a
* b * b
* c * c
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
The second variable. +
**Choices**: **Choices**:
* a * a
* b * b
* c * c
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
The third variable. +
**Choices**: **Choices**:
* a * a
* b * b
* c * c
* null * null
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
The forth variable. +
**Choices**: **Choices**:
* null * null
* b * b
* c * c
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
The fifth variable. +
**Choices**: **Choices**:
* a **← (default)** * a **← (default)**
* b * b
* c * c
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
The sixth variable. +
**Choices**: **Choices**:
* 1 **← (default)** * 1 **← (default)**

View file

@ -3,38 +3,38 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The first variable. │ var1 │ The first variable. │
 choice   basic   mandatory  │ Choices: │  choice   basic   mandatory  │ Choices: │
│ │ - a │ │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The second variable. │ var2 │ The second variable. │
 choice   basic   mandatory  │ Choices: │  choice   basic   mandatory  │ Choices: │
│ │ - a │ │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var3 │ The third variable. │ var3 │ The third variable. │
 choice   standard  │ Choices: │  choice   standard  │ Choices: │
│ │ - a │ │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
│ │ - null │ │ • null
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 choice   standard  │ Choices: │  choice   standard  │ Choices: │
│ │ - null │ │ • null
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ - a ← (default) │ │ a ← (default) │
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ - 1 ← (default) │ │ 1 ← (default) │
│ │ - 2 │ │ 2
│ │ - 3 │ │ 3
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A variable. +
**Choices**: choices is 0 to 9 + **Choices**: choices is 0 to 9 +
**Default**: 9 **Default**: 9
|==== |====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
The first variable. +
**Choices**: **Choices**:
* a * a
* b * b
* c * c
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
The second variable. +
**Choices**: **Choices**:
* a * a

View file

@ -3,15 +3,15 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The first variable. │ var1 │ The first variable. │
 choice   basic   mandatory  │ Choices: │  choice   basic   mandatory  │ Choices: │
│ │ - a │ │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The second variable. │ var2 │ The second variable. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ - a │ │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "var1" │ │ "var1"
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: **Default**:
* a * a
* b * b
* c * c
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A first variable. +
**Choices**: the value of the variable "var1" + **Choices**: the value of the variable "var1" +
**Default**: a **Default**: a
|==== |====

View file

@ -3,9 +3,9 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ A second variable. │ var1 │ A second variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - a unique   multiple  │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ A first variable. │ var2 │ A first variable. │
 choice   standard   mandatory  │ Choices: the value of the variable │  choice   standard   mandatory  │ Choices: the value of the variable │

View file

@ -1,28 +1,19 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: **Default**:
* a * a
* b * b
* c * c
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A first variable. +
**Choices**: the value of the variable "var1" + **Choices**: the value of the variable "var1" +
**Default**: a **Default**: a
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A third variable. +
**Choices**: the value of the variable "var1" + **Choices**: the value of the variable "var1" +
**Default**: the value of the variable "var2" **Default**: the value of the variable "var2"
|==== |====

View file

@ -3,9 +3,9 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ A second variable. │ var1 │ A second variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - a unique   multiple  │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ A first variable. │ var2 │ A first variable. │
 choice   standard   mandatory  │ Choices: the value of the variable │  choice   standard   mandatory  │ Choices: the value of the variable │

View file

@ -1,40 +1,32 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A second variable. +
**Default**: **Default**:
* a * a
* b * b
* c * c
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A first variable. +
**Choices**: the value of the variable "var1" + **Choices**: the value of the variable "var1" +
**Default**: a **Default**: a
|==== |====
== family == family
====
**🛈 Informations**
**family** **family** +
`standard` `standard`
====
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
**family.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A third variable. +
**Choices**: the value of the variable "var1" + **Choices**: the value of the variable "var1" +
**Default**: the value of the variable "var2" **Default**: the value of the variable "var2"
|==== |====

View file

@ -5,9 +5,10 @@
<details><summary>family</summary> <details><summary>family</summary>
>>> [!note] Informations > [!note] Informations
<br/>**<a id="family" name="family">family</a>**<br/>`standard` > **<a id="family" name="family">family</a>**\
>>> > `standard`
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" | | **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |

View file

@ -5,11 +5,10 @@
# family # family
> **🛈 Informations**
>
| Informations | > **family**\
|:------------| > `standard`
| **family**<br/>`standard` |
| Variable&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | | Variable&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|

View file

@ -3,24 +3,21 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ A second variable. │ var1 │ A second variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - a unique   multiple  │ • a
│ │ - b │ │ • b
│ │ - c │ │ • c
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ A first variable. │ var2 │ A first variable. │
 choice   standard   mandatory  │ Choices: the value of the variable │  choice   standard   mandatory  │ Choices: the value of the variable │
│ │ "var1" │ │ "var1"
│ │ Default: a │ │ │ Default: a │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
family family
▌ 🛈 Informations
family ▌ 
▌ family
 standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **custom1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable.
**custom1** + | **custom2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. +
The first variable.
|
**custom2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` |
The seconf variable. +
**Default**: value **Default**: value
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
A domain name variable. +
**Default**: my.domain.name **Default**: my.domain.name
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
A domain name variable. +
**Validator**: the domain name can be an IP + **Validator**: the domain name can be an IP +
**Default**: my.domain.name **Default**: my.domain.name
|==== |====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The first variable. +
**Default**: 0.0 **Default**: 0.0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The second variable. +
**Default**: 0.0 **Default**: 0.0
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The third variable. +
**Default**: 0.0 **Default**: 0.0
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The forth variable. +
**Default**: 10.1 **Default**: 10.1
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The fifth variable. +
**Default**: 10.1 **Default**: 10.1
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
The sixth variable. +
**Default**: 10.1 **Default**: 10.1
|==== |====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The first variable. +
**Default**: 0 **Default**: 0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The second variable. +
**Default**: 0 **Default**: 0
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The third variable. +
**Default**: 0 **Default**: 0
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
This forth variable. +
**Default**: 10 **Default**: 10
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The fifth variable. +
**Default**: 10 **Default**: 10
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The sixth variable. +
**Default**: 10 **Default**: 10
|==== |====

View file

@ -1,18 +1,12 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
An IP. +
**Validator**: reserved IP are allowed + **Validator**: reserved IP are allowed +
**Default**: 1.1.1.1 **Default**: 1.1.1.1
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
An IP in CIDR format. +
**Validators**: **Validators**:
* IP must be in CIDR format * IP must be in CIDR format
@ -20,11 +14,8 @@ An IP in CIDR format. +
**Default**: 1.1.1.1/24 + **Default**: 1.1.1.1/24 +
**Example**: 192.168.0.128/25 **Example**: 192.168.0.128/25
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` |
An IP in CIDR format with obsolete CIDR type. +
**Default**: 1.1.1.1/24 **Default**: 1.1.1.1/24
|==== |====

View file

@ -7,8 +7,8 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ An IP in CIDR format. │ var2 │ An IP in CIDR format. │
 IP   standard   mandatory  │ Validators: │  IP   standard   mandatory  │ Validators: │
│ │ - IP must be in CIDR format │ │ • IP must be in CIDR format
│ │ - reserved IP are allowed │ │ • reserved IP are allowed
│ │ Default: 1.1.1.1/24 │ │ │ Default: 1.1.1.1/24 │
│ │ Example: 192.168.0.128/25 │ │ │ Example: 192.168.0.128/25 │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤

View file

@ -1,24 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
An network. +
**Default**: 1.1.1.0 **Default**: 1.1.1.0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
An network in CIDR format. +
**Validator**: network must be in CIDR format + **Validator**: network must be in CIDR format +
**Default**: 1.1.1.0/24 **Default**: 1.1.1.0/24
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` |
An network in CIDR format with obsolete CIDR type. +
**Default**: 1.1.1.0/24 **Default**: 1.1.1.0/24
|==== |====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The first variable. +
**Default**: 0 **Default**: 0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The second variable. +
**Default**: 0 **Default**: 0
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The third variable. +
**Default**: 0 **Default**: 0
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
This forth variable. +
**Default**: 10 **Default**: 10
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The fifth variable. +
**Default**: 10 **Default**: 10
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
The sixth variable. +
**Default**: 10 **Default**: 10
|==== |====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | A port variable. +
**variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` |
A port variable. +
**Validators**: **Validators**:
* well-known ports (1 to 1023) are allowed * well-known ports (1 to 1023) are allowed
* registred ports (1024 to 49151) are allowed * registred ports (1024 to 49151) are allowed
* private ports (greater than 49152) are allowed * private ports (greater than 49152) are allowed
| | **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. +
**variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
A port variable with default value. +
**Validators**: **Validators**:
* well-known ports (1 to 1023) are allowed * well-known ports (1 to 1023) are allowed
@ -23,11 +17,8 @@ A port variable with default value. +
* private ports (greater than 49152) are allowed * private ports (greater than 49152) are allowed
**Default**: 8080 **Default**: 8080
| | **variable3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. +
**variable3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
A port variable with integer default value. +
**Validators**: **Validators**:
* well-known ports (1 to 1023) are allowed * well-known ports (1 to 1023) are allowed

View file

@ -3,31 +3,31 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
variable1 │ A port variable. │ variable1 │ A port variable. │
 port   basic   mandatory  │ Validators: │  port   basic   mandatory  │ Validators: │
│ │ - well-known ports (1 to 1023) are │ │ well-known ports (1 to 1023) are │
│ │ allowed │ │ │ allowed │
│ │ - registred ports (1024 to 49151) │ │ • registred ports (1024 to 49151)
│ │ are allowed │
│ │ - private ports (greater than 49152)
│ │ are allowed │ │ │ are allowed │
│ │ • private ports (greater than │
│ │ 49152) are allowed │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
variable2 │ A port variable with default value. │ variable2 │ A port variable with default value. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
│ │ - well-known ports (1 to 1023) are │ │ well-known ports (1 to 1023) are │
│ │ allowed │ │ │ allowed │
│ │ - registred ports (1024 to 49151) │ │ • registred ports (1024 to 49151)
│ │ are allowed │
│ │ - private ports (greater than 49152)
│ │ are allowed │ │ │ are allowed │
│ │ • private ports (greater than │
│ │ 49152) are allowed │
│ │ Default: 8080 │ │ Default: 8080
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
variable3 │ A port variable with integer default │ variable3 │ A port variable with integer default │
 port   standard   mandatory  │ value. │  port   standard   mandatory  │ value. │
│ │ Validators: │ │ │ Validators: │
│ │ - well-known ports (1 to 1023) are │ │ well-known ports (1 to 1023) are │
│ │ allowed │ │ │ allowed │
│ │ - registred ports (1024 to 49151) │ │ • registred ports (1024 to 49151)
│ │ are allowed │
│ │ - private ports (greater than 49152)
│ │ are allowed │ │ │ are allowed │
│ │ • private ports (greater than │
│ │ 49152) are allowed │
│ │ Default: 8080 │ │ Default: 8080
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
A first variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
**Default**: #a1a1a1 + **Default**: #a1a1a1 +
**Examples**: **Examples**:

View file

@ -7,6 +7,6 @@
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │ │ "^#(?:[0-9a-f]{3}){1,2}$"
│ │ Default: #a1a1a1 │ │ │ Default: #a1a1a1 │
│ │ Examples: │ │ │ Examples: │
│ │ - #b1b1b1 │ │ #b1b1b1
│ │ - #b2b2b2 │ │ #b2b2b2
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,22 +1,16 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
A first variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
**Default**: #a1a1a1 + **Default**: #a1a1a1 +
**Examples**: **Examples**:
* '#b1b1b1' * '#b1b1b1'
* '#b2b2b2' * '#b2b2b2'
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
A second variable. +
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" + **Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
**Default**: the value of the variable "var1" + **Default**: the value of the variable "var1" +
**Examples**: **Examples**:

View file

@ -7,8 +7,8 @@
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │ │ "^#(?:[0-9a-f]{3}){1,2}$"
│ │ Default: #a1a1a1 │ │ │ Default: #a1a1a1 │
│ │ Examples: │ │ │ Examples: │
│ │ - #b1b1b1 │ │ #b1b1b1
│ │ - #b2b2b2 │ │ #b2b2b2
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ A second variable. │ var2 │ A second variable. │
 regexp   standard   mandatory  │ Validator: text based with regular │  regexp   standard   mandatory  │ Validator: text based with regular │
@ -17,6 +17,6 @@
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "var1" │ │ "var1"
│ │ Examples: │ │ │ Examples: │
│ │ - #b2b1b1 │ │ #b2b1b1
│ │ - #b3b2b2 │ │ #b3b2b2
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **secret1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable.
**secret1** + | **secret2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
The first variable.
|
**secret2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
The second variable. +
**Default**: value **Default**: value
|==== |====

View file

@ -1,28 +1,19 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **secret1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +
**secret1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` |
The first variable. +
**Validator**: minimum length for the secret is 10 characters **Validator**: minimum length for the secret is 10 characters
| | **secret2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
**secret2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
The second variable. +
**Validators**: **Validators**:
* maximum length for the secret is 10 characters * maximum length for the secret is 10 characters
* 'forbidden characters: "$" and "^"' * 'forbidden characters: "$" and "^"'
**Default**: value **Default**: value
| | **secret3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. +
**secret3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
The third variable. +
**Validators**: **Validators**:
* maximum length for the secret is 10 characters * maximum length for the secret is 10 characters

View file

@ -7,15 +7,15 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
secret2 │ The second variable. │ secret2 │ The second variable. │
 secret   standard   mandatory  │ Validators: │  secret   standard   mandatory  │ Validators: │
│ │ - maximum length for the secret is │ │ • maximum length for the secret is
│ │ 10 characters │ │ │ 10 characters │
│ │ - forbidden characters: "$" and "^" │ │ forbidden characters: "$" and "^"
│ │ Default: value │ │ │ Default: value │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
secret3 │ The third variable. │ secret3 │ The third variable. │
 secret   standard   mandatory  │ Validators: │  secret   standard   mandatory  │ Validators: │
│ │ - maximum length for the secret is │ │ • maximum length for the secret is
│ │ 10 characters │ │ │ 10 characters │
│ │ - forbidden characters: "$" │ │ • forbidden characters: "$"
│ │ Default: value │ │ │ Default: value │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,50 +1,26 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable.
The first variable. | **var3** +
| `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable.
| **var4** +
**var2** + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The second variable.
|
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The third variable.
|
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The forth variable. +
**Default**: value **Default**: value
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The fifth variable. +
**Default**: value **Default**: value
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The sixth variable. +
**Default**: value **Default**: value
| | **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. +
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The seventh variable. +
**Default**: 8080 **Default**: 8080
| | **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. +
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The height variable. +
**Default**: true **Default**: true
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A choice. +
**Choices**: **Choices**:
* quote' **← (default)** * quote' **← (default)**

View file

@ -3,7 +3,7 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var │ A choice. │ var │ A choice. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ - quote' ← (default) │ │ quote' ← (default) │
│ │ - quote" │ │ • quote"
│ │ - quote"' │ │ • quote"'
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The first variable. +
Multi line Multi line
Help Help
With useful information. With useful information.
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The second variable. +
Multi line Multi line
Help Help
With useful information. With useful information.

View file

@ -1,17 +1,11 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The first variable. +
Message with '. Message with '.
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The second variable. +
Message with ". Message with ".
|==== |====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first <variable>. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The first <variable>. +
Multi line Multi line
<Help> <Help>
With useful information. With useful information.
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second <variable>. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The second <variable>. +
Multi line Multi line
<Help> <Help>
With useful information. With useful information.

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: quote" **Default**: quote"
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: quote'" **Default**: quote'"
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: quote\"\' **Default**: quote\"\'
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: quote' **Default**: quote'
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: get information test_information **Default**: get information test_information
|==== |====

View file

@ -1,50 +1,32 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The first variable. +
**Example**: test **Example**: test
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The second variable. +
**Default**: value + **Default**: value +
**Example**: test **Example**: test
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
The third variable. +
**Examples**: **Examples**:
* test1 * test1
* test2 * test2
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
The forth variable. +
**Examples**: **Examples**:
* null * null
* test1 * test1
* test2 * test2
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
The fifth variable. +
**Default**: true + **Default**: true +
**Example**: false **Example**: false
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
The sixth variable. +
**Examples**: **Examples**:
* test1 * test1

View file

@ -10,14 +10,14 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var3 │ The third variable. │ var3 │ The third variable. │
 string   basic   mandatory  │ Examples: │  string   basic   mandatory  │ Examples: │
│ │ - test1 │ │ • test1
│ │ - test2 │ │ • test2
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 string   standard  │ Examples: │  string   standard  │ Examples: │
│ │ - null │ │ • null
│ │ - test1 │ │ • test1
│ │ - test2 │ │ • test2
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 boolean   standard   mandatory  │ Default: true  boolean   standard   mandatory  │ Default: true
@ -25,6 +25,6 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 string   basic   mandatory   unique  │ Examples: │  string   basic   mandatory   unique  │ Examples: │
multiple  │ - test1 multiple  │ • test1
│ │ - test2 │ │ • test2
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,20 +1,14 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. +
**variable1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` |
A first variable. +
**Choices**: **Choices**:
* val1 * val1
* val2 * val2
| | **variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. +
**variable2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` |
A second variable. +
**Choices**: **Choices**:
* val1 * val1

View file

@ -3,11 +3,11 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
variable1 │ A first variable. │ variable1 │ A first variable. │
 choice   basic   mandatory   unique  │ Choices: │  choice   basic   mandatory   unique  │ Choices: │
multiple  │ - val1 multiple  │ • val1
│ │ - val2 │ │ • val2
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
variable2 │ A second variable. │ variable2 │ A second variable. │
 choice   standard   unique    │ Choices: │  choice   standard   unique    │ Choices: │
multiple  │ - val1 multiple  │ • val1
│ │ - val2 │ │ • val2
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,23 +1,14 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **source_variable_1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. +
**source_variable_1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The first source variable. +
**Default**: val1 **Default**: val1
| | **source_variable_2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. +
**source_variable_2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
The second source variable. +
**Default**: val2 **Default**: val2
| | **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A variable. +
**Choices**: **Choices**:
* the value of the variable "source_variable_1" * the value of the variable "source_variable_1"

View file

@ -9,9 +9,9 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
my_variable │ A variable. │ my_variable │ A variable. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ - the value of the variable │ │ • the value of the variable
│ │ "source_variable_1" │ │ "source_variable_1"
│ │ - the value of the variable │ │ • the value of the variable
│ │ "source_variable_2" │ │ "source_variable_2"
│ │ Default: val1 │ │ │ Default: val1 │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: concat all parameters **Default**: concat all parameters
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A variable. +
**Default**: returns the information **Default**: returns the information
|==== |====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
A first variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: depends on a calculation **Default**: depends on a calculation
|==== |====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
**my_variable** + | **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
**Default**: val1
|
**my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**:
* the value of the variable "my_variable" if it is defined * the value of the variable "my_variable" if it is defined
|==== |====

View file

@ -5,6 +5,6 @@
 string   standard   mandatory  │ │  string   standard   mandatory  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
my_calculated_variable │ Default: │ my_calculated_variable │ Default: │
 string   standard   mandatory    │ - the value of the variable  string   standard   mandatory    │ • the value of the variable
unique   multiple  │ "my_variable" if it is defined │ unique   multiple  │ "my_variable" if it is defined │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
**my_variable** + | **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
**Default**: val1
|
**my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**:
* the value of the variable "my_variable" if it is defined * the value of the variable "my_variable" if it is defined
|==== |====

View file

@ -5,6 +5,6 @@
 string   standard   mandatory  │ │  string   standard   mandatory  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
my_calculated_variable │ Default: │ my_calculated_variable │ Default: │
 string   standard   mandatory    │ - the value of the variable  string   standard   mandatory    │ • the value of the variable
unique   multiple  │ "my_variable" if it is defined │ unique   multiple  │ "my_variable" if it is defined │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
**my_variable** + | **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
**Default**: val1
|
**my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**:
* the value of the variable "my_variable" if it is defined * the value of the variable "my_variable" if it is defined
|==== |====

View file

@ -5,6 +5,6 @@
 string   standard   mandatory  │ │  string   standard   mandatory  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
my_calculated_variable │ Default: │ my_calculated_variable │ Default: │
 string   standard   mandatory    │ - the value of the variable  string   standard   mandatory    │ • the value of the variable
unique   multiple  │ "my_variable" if it is defined │ unique   multiple  │ "my_variable" if it is defined │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,10 +1,7 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **my_calculated_variable** +
**my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|==== |====

View file

@ -1,18 +1,12 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
**my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**:
* val1 * val1
* val2 * val2
| | **my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "my_variable" if it is defined
**my_calculated_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**: the value of the variable "my_variable" if it is defined
|==== |====

View file

@ -2,8 +2,8 @@
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
my_variable │ Default: │ my_variable │ Default: │
 string   standard   mandatory    │ - val1  string   standard   mandatory    │ • val1
unique   multiple  │ - val2 unique   multiple  │ • val2
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
my_calculated_variable │ Default: the value of the variable │ my_calculated_variable │ Default: the value of the variable │
 string   standard   mandatory    │ "my_variable" if it is defined │  string   standard   mandatory    │ "my_variable" if it is defined │

View file

@ -1,17 +1,11 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
A first variable. +
**Default**: returns a value **Default**: returns a value
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: no **Default**: no
|==== |====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
A first variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: the value of the information "test_information" of the variable "var1" **Default**: the value of the information "test_information" of the variable "var1"
|==== |====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
A first variable.
|
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
A second variable. +
**Default**: the value of the information "test_information" of the variable "var1" **Default**: the value of the information "test_information" of the variable "var1"
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A variable. +
**Choices**: choice for 0 to 9 + **Choices**: choice for 0 to 9 +
**Default**: 9 **Default**: 9
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
A variable. +
**Choices**: choice for 0 to 9 + **Choices**: choice for 0 to 9 +
**Default**: 9 **Default**: 9
|==== |====

View file

@ -1,67 +1,43 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The first variable. +
**Default**: **Default**:
* true * true
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The second variable. +
**Default**: **Default**:
* true * true
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The third variable. +
**Default**: **Default**:
* true * true
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The forth variable. +
**Default**: **Default**:
* false * false
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The fifth variable. +
**Default**: **Default**:
* false * false
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The sixth variable. +
**Default**: **Default**:
* false * false
| | **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The seventh variable. +
**Default**: **Default**:
* true * true
| | **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
The eighth variable. +
**Default**: **Default**:
* true * true

View file

@ -3,33 +3,33 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The first variable. │ var1 │ The first variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - true unique   multiple  │ true
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The second variable. │ var2 │ The second variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - true unique   multiple  │ true
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var3 │ The third variable. │ var3 │ The third variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - true unique   multiple  │ true
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - false unique   multiple  │ false
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - false unique   multiple  │ false
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - false unique   multiple  │ false
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var7 │ The seventh variable. │ var7 │ The seventh variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - true unique   multiple  │ true
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var8 │ The eighth variable. │ var8 │ The eighth variable. │
 boolean   standard   mandatory    │ Default: │  boolean   standard   mandatory    │ Default: │
unique   multiple  │ - true unique   multiple  │ true
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,16 +1,10 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **custom1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable.
**custom1** + | **custom2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. +
A first custom variable.
|
**custom2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` |
A second custom variable. +
**Default**: **Default**:
* value * value

View file

@ -7,5 +7,5 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
custom2 │ A second custom variable. │ custom2 │ A second custom variable. │
 custom   standard   mandatory    │ Default: │  custom   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,67 +1,43 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The first variable. +
**Default**: **Default**:
* 0.0 * 0.0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The second variable. +
**Default**: **Default**:
* 0.0 * 0.0
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The third variable. +
**Default**: **Default**:
* 0.0 * 0.0
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The forth variable. +
**Default**: **Default**:
* 10.1 * 10.1
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The fifth variable. +
**Default**: **Default**:
* 10.1 * 10.1
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The sixth variable. +
**Default**: **Default**:
* 10.1 * 10.1
| | **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The seventh variable. +
**Default**: **Default**:
* 0.0 * 0.0
| | **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
The eighth variable. +
**Default**: **Default**:
* 0.0 * 0.0

View file

@ -3,33 +3,33 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The first variable. │ var1 │ The first variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 0.0 unique   multiple  │ • 0.0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The second variable. │ var2 │ The second variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 0.0 unique   multiple  │ • 0.0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var3 │ The third variable. │ var3 │ The third variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 0.0 unique   multiple  │ • 0.0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 10.1 unique   multiple  │ • 10.1
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 10.1 unique   multiple  │ • 10.1
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 10.1 unique   multiple  │ • 10.1
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var7 │ The seventh variable. │ var7 │ The seventh variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 0.0 unique   multiple  │ • 0.0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var8 │ The eighth variable. │ var8 │ The eighth variable. │
 float   standard   mandatory    │ Default: │  float   standard   mandatory    │ Default: │
unique   multiple  │ - 0.0 unique   multiple  │ • 0.0
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,67 +1,43 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The first variable. +
**Default**: **Default**:
* 0 * 0
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The second variable. +
**Default**: **Default**:
* 0 * 0
| | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. +
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The third variable. +
**Default**: **Default**:
* 0 * 0
| | **var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The forth variable. +
**Default**: **Default**:
* 10 * 10
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The fifth variable. +
**Default**: **Default**:
* 10 * 10
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The sixth variable. +
**Default**: **Default**:
* 10 * 10
| | **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The seventh variable. +
**Default**: **Default**:
* 0 * 0
| | **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
The eighth variable. +
**Default**: **Default**:
* 0 * 0

View file

@ -3,33 +3,33 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The first variable. │ var1 │ The first variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 0 unique   multiple  │ 0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The second variable. │ var2 │ The second variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 0 unique   multiple  │ 0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var3 │ The third variable. │ var3 │ The third variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 0 unique   multiple  │ 0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 10 unique   multiple  │ 10
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 10 unique   multiple  │ 10
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 10 unique   multiple  │ 10
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var7 │ The seventh variable. │ var7 │ The seventh variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 0 unique   multiple  │ 0
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var8 │ The eighth variable. │ var8 │ The eighth variable. │
 integer   standard   mandatory    │ Default: │  integer   standard   mandatory    │ Default: │
unique   multiple  │ - 0 unique   multiple  │ 0
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,10 +1,7 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable.
**var** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` |
The first variable.
|==== |====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The second variable. +
**Default**: **Default**:
* value * value

View file

@ -3,6 +3,6 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
var1 │ The second variable. │ var1 │ The second variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
│ │ - null │ │ • null
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,58 +1,34 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable.
**var1** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable.
The first variable. | **var3** +
| `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable.
| **var4** +
**var2** + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
The second variable.
|
**var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
The third variable.
|
**var4** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The forth variable. +
**Default**: **Default**:
* value * value
| | **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The fifth variable. +
**Default**: **Default**:
* value * value
| | **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The sixth variable. +
**Default**: **Default**:
* value * value
| | **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The seventh variable. +
**Default**: **Default**:
* value * value
| | **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The eighth variable. +
**Default**: **Default**:
* value * value

View file

@ -15,21 +15,21 @@
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var4 │ The forth variable. │ var4 │ The forth variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var5 │ The fifth variable. │ var5 │ The fifth variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var6 │ The sixth variable. │ var6 │ The sixth variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var7 │ The seventh variable. │ var7 │ The seventh variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var8 │ The eighth variable. │ var8 │ The eighth variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - value unique   multiple  │ • value
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,22 +1,16 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The variable. +
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The variable. +
**Validator**: needs exactly 3 values + **Validator**: needs exactly 3 values +
**Default**: **Default**:
* val1 * val1
* val2 * val2
* val3 * val3
| | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The variable. +
**var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The variable. +
**Validators**: **Validators**:
* needs a minimum of 1 values * needs a minimum of 1 values

View file

@ -4,15 +4,15 @@
var1 │ The variable. │ var1 │ The variable. │
 string   standard   mandatory    │ Validator: needs exactly 3 values │  string   standard   mandatory    │ Validator: needs exactly 3 values │
unique   multiple  │ Default: │ unique   multiple  │ Default: │
│ │ - val1 │ │ • val1
│ │ - val2 │ │ • val2
│ │ - val3 │ │ • val3
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
var2 │ The variable. │ var2 │ The variable. │
 string   standard   mandatory    │ Validators: │  string   standard   mandatory    │ Validators: │
unique   multiple  │ - needs a minimum of 1 values unique   multiple  │ • needs a minimum of 1 values
│ │ - needs a maximum of 4 values │ │ • needs a maximum of 4 values
│ │ Default: │ │ │ Default: │
│ │ - val4 │ │ • val4
│ │ - val5 │ │ • val5
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A variable. +
**Default**: **Default**:
* quote" * quote"

View file

@ -3,5 +3,5 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
variable │ A variable. │ variable │ A variable. │
 string   standard   mandatory    │ Default: │  string   standard   mandatory    │ Default: │
unique   multiple  │ - quote" unique   multiple  │ • quote"
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,11 +1,8 @@
[cols="1a,1a"] [cols="1a,1a"]
|==== |====
| Variable | Description | Variable | Description
| | **variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. +
**variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
A variable. +
**Default**: **Default**:
* quote'" * quote'"

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