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 adf2922ef6
5942 changed files with 31499 additions and 50733 deletions

View file

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

View file

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

View file

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

View file

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

View file

@ -1,17 +1,11 @@
[cols="1a,1a"]
|====
| 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
|
**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
|====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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**:
* no
* yes
* 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
|====

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

@ -1,17 +1,11 @@
[cols="1a,1a"]
|====
| 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
|
**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"
|====

View file

@ -1,16 +1,10 @@
[cols="1a,1a"]
|====
| Variable | Description
|
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
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!
| Variable | Description
| **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | 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!
|====

View file

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

View file

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

View file

@ -1,41 +1,23 @@
[cols="1a,1a"]
|====
| 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
|
**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
|
**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
|
**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
|
**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
|
**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
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

@ -1,62 +1,44 @@
[cols="1a,1a"]
|====
| 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**:
* a
* b
* 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**:
* a
* b
* 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**:
* a
* b
* c
* 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**:
* null
* b
* 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**:
* a **← (default)**
* b
* 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**:
* 1 **← (default)**

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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 +
**Default**: 9
|====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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**:
* a
* b
* 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**:
* a

View file

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

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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**:
* a
* b
* 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" +
**Default**: a
|====

View file

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

View file

@ -1,28 +1,19 @@
[cols="1a,1a"]
|====
| 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**:
* a
* b
* 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" +
**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" +
**Default**: the value of the variable "var2"
|====

View file

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

View file

@ -1,40 +1,32 @@
[cols="1a,1a"]
|====
| 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**:
* a
* b
* 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" +
**Default**: a
|====
== family
====
**🛈 Informations**
**family**
**family** +
`standard`
====
[cols="1a,1a"]
|====
| 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" +
**Default**: the value of the variable "var2"
|====

View file

@ -5,9 +5,10 @@
<details><summary>family</summary>
>>> [!note] Informations
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
>>>
> [!note] Informations
> **<a id="family" name="family">family</a>**\
> `standard`
| 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)" |

View file

@ -5,11 +5,10 @@
# family
| Informations |
|:------------|
| **family**<br/>`standard` |
> **🛈 Informations**
>
> **family**\
> `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; |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|

View file

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

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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 +
**Default**: my.domain.name
|====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"]
|====
| 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
|
**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
|
**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
|
**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
|
**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
|
**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
|====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"]
|====
| 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
|
**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
|
**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
|
**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
|
**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
|
**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
|====

View file

@ -1,18 +1,12 @@
[cols="1a,1a"]
|====
| 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 +
**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**:
* IP must be in CIDR format
@ -20,11 +14,8 @@ An IP in CIDR format. +
**Default**: 1.1.1.1/24 +
**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
|====

View file

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

View file

@ -1,24 +1,15 @@
[cols="1a,1a"]
|====
| 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
|
**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 +
**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
|====

View file

@ -1,41 +1,23 @@
[cols="1a,1a"]
|====
| 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
|
**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
|
**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
|
**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
|
**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
|
**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
|====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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**:
* well-known ports (1 to 1023) are allowed
* registred ports (1024 to 49151) 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**:
* 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
**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**:
* well-known ports (1 to 1023) are allowed

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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}$" +
**Default**: #a1a1a1 +
**Examples**:

View file

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

View file

@ -1,22 +1,16 @@
[cols="1a,1a"]
|====
| 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}$" +
**Default**: #a1a1a1 +
**Examples**:
* '#b1b1b1'
* '#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}$" +
**Default**: the value of the variable "var1" +
**Examples**:

View file

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

View file

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

View file

@ -1,28 +1,19 @@
[cols="1a,1a"]
|====
| 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
|
**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**:
* maximum length for the secret is 10 characters
* 'forbidden characters: "$" and "^"'
**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**:
* maximum length for the secret is 10 characters

View file

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

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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**:
* quote' **← (default)**

View file

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

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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
Help
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
Help
With useful information.

View file

@ -1,17 +1,11 @@
[cols="1a,1a"]
|====
| 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 '.
|
**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 ".
|====

View file

@ -1,21 +1,15 @@
[cols="1a,1a"]
|====
| 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
<Help>
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
<Help>
With useful information.

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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"
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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'"
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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\"\'
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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'
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

@ -1,50 +1,32 @@
[cols="1a,1a"]
|====
| 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
|
**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 +
**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**:
* test1
* 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**:
* null
* test1
* 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 +
**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**:
* test1

View file

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

View file

@ -1,20 +1,14 @@
[cols="1a,1a"]
|====
| 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**:
* val1
* 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**:
* val1

View file

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

View file

@ -1,23 +1,14 @@
[cols="1a,1a"]
|====
| 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
|
**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
|
**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**:
* the value of the variable "source_variable_1"

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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
|====

View file

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

View file

@ -1,17 +1,11 @@
[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_calculated_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` |
**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  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤
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 │
└───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,17 +1,11 @@
[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_calculated_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` |
**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  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤
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 │
└───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -1,17 +1,11 @@
[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_calculated_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` |
**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  │ │
├───────────────────────────────────────┼──────────────────────────────────────┤
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 │
└───────────────────────────────────────┴──────────────────────────────────────┘

View file

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

View file

@ -1,18 +1,12 @@
[cols="1a,1a"]
|====
| Variable | Description
|
**my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
**Default**:
| Variable | Description
| **my_variable** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
* val1
* 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
* 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
|====

View file

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

View file

@ -1,17 +1,11 @@
[cols="1a,1a"]
|====
| 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
|
**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
|====

View file

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

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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 +
**Default**: 9
|====

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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 +
**Default**: 9
|====

View file

@ -1,67 +1,43 @@
[cols="1a,1a"]
|====
| 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* true

View file

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

View file

@ -1,18 +1,12 @@
[cols="1a,1a"]
|====
| Variable | Description
|
**custom1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` |
A first custom variable.
|
**custom2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` |
A second custom variable. +
| Variable | Description
| **custom1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | 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**:
* value
* value
|====

View file

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

View file

@ -1,67 +1,43 @@
[cols="1a,1a"]
|====
| 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 0.0

View file

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

View file

@ -1,67 +1,43 @@
[cols="1a,1a"]
|====
| 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 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**:
* 0

View file

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

View file

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

View file

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

View file

@ -1,60 +1,36 @@
[cols="1a,1a"]
|====
| Variable | Description
|
**var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
The first variable.
|
**var2** +
`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. +
| Variable | Description
| **var1** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable.
| **var2** +
`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**:
* value
|
**var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The fifth variable. +
* value
| **var5** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
**Default**:
* value
|
**var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The sixth variable. +
* value
| **var6** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
**Default**:
* value
|
**var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The seventh variable. +
* value
| **var7** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
**Default**:
* value
|
**var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
The eighth variable. +
* value
| **var8** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
**Default**:
* value
* value
|====

View file

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

View file

@ -1,22 +1,16 @@
[cols="1a,1a"]
|====
| 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 +
**Default**:
* val1
* val2
* 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**:
* needs a minimum of 1 values

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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**:
* quote"

View file

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

View file

@ -1,11 +1,8 @@
[cols="1a,1a"]
|====
| 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**:
* quote'"

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