Compare commits
No commits in common. "1.1.0" and "main" have entirely different histories.
121 changed files with 50 additions and 580 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,14 +1,3 @@
|
||||||
## 1.1.0 (2026-09-07)
|
|
||||||
|
|
||||||
### Feat
|
|
||||||
|
|
||||||
- test dynamic layers
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- if error is a string do the same error has if it's a dict
|
|
||||||
- simplify disabled test
|
|
||||||
|
|
||||||
## 1.0.0 (2026-06-21)
|
## 1.0.0 (2026-06-21)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.output_display"
|
name = "rougail.output_display"
|
||||||
version = "1.1.0"
|
version = "1.0.0"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail output display"
|
description = "Rougail output display"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "1.1.0"
|
__version__ = "0.2.0a19"
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,11 @@ display:
|
||||||
{_('Find all the variables and their values in your configuration (structural and user data). Additional informations are available, such as the default value, the location where the value is loaded, etc.')}
|
{_('Find all the variables and their values in your configuration (structural and user data). Additional informations are available, such as the default value, the location where the value is loaded, etc.')}
|
||||||
disabled:
|
disabled:
|
||||||
jinja: |-
|
jinja: |-
|
||||||
{{{{ step.output is propertyerror or step.output != 'display' }}}}
|
{{% if step.output is propertyerror or step.output != 'display' %}}
|
||||||
|
true
|
||||||
|
{{% else %}}
|
||||||
|
false
|
||||||
|
{{% endif %}}
|
||||||
return_type: boolean
|
return_type: boolean
|
||||||
description: {_('if display is not set in "step.output"')}
|
description: {_('if display is not set in "step.output"')}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -112,8 +112,7 @@ class CommonOutput:
|
||||||
None, {}
|
None, {}
|
||||||
).setdefault(description, []).append((msg, level))
|
).setdefault(description, []).append((msg, level))
|
||||||
else:
|
else:
|
||||||
# Shoud not exist, error should always be a dict
|
errors_dict.setdefault(None, []).append(error)
|
||||||
errors_dict.setdefault(None, {}).setdefault(None, []).append((error, level))
|
|
||||||
|
|
||||||
def subconfig_to_dict(self, subconfig: "Subconfig", errors_dict: dict) -> dict:
|
def subconfig_to_dict(self, subconfig: "Subconfig", errors_dict: dict) -> dict:
|
||||||
# FIXME a tester : mandatories dans une arborescence (voir si ca n'ecrase pas)
|
# FIXME a tester : mandatories dans une arborescence (voir si ca n'ecrase pas)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
>
|
>
|
||||||
> - <span style='color: -'>:stop_sign: cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data</span>
|
> - cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||||
> - <span style='color: -'>:stop_sign: variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data</span>
|
> - variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
>
|
>
|
||||||
> - <span style='color: #C23636'>:stop_sign: cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data</span>
|
> - cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||||
> - <span style='color: #C23636'>:stop_sign: variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data</span>
|
> - variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
[1;91m🛑 Caution[0m
|
[1;91m🛑 Caution[0m
|
||||||
[91m┣━━ [0m[91m🛑 cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data[0m
|
[91m┣━━ [0mcannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||||
[91m┗━━ [0m[91m🛑 variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data[0m
|
[91m┗━━ [0mvariable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||||
|
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
> [!note] Layers:
|
|
||||||
>
|
|
||||||
> - name1
|
|
||||||
> - name2
|
|
||||||
> - name3
|
|
||||||
> - name4
|
|
||||||
Variables:
|
|
||||||
- :notebook: dynamics (a dynamics variable):
|
|
||||||
- [- metaconfig2 -] (:hourglass_flowing_sand: metaconfig2 :hourglass_flowing_sand: metaconfig2)
|
|
||||||
- [- metaconfig1 -] (:hourglass_flowing_sand: metaconfig1)
|
|
||||||
- [- config -]
|
|
||||||
- :open_file_folder: dynmetaconfig2
|
|
||||||
- :notebook: a_variable (my variable only to test): [- a modified value -] ← loaded from source1 (:hourglass_flowing_sand: a value)
|
|
||||||
- :open_file_folder: dynmetaconfig1
|
|
||||||
- :notebook: a_variable (my variable only to test): [- a modified value -] ← loaded from source2
|
|
||||||
- :open_file_folder: dynconfig
|
|
||||||
- :notebook: a_variable (my variable only to test): [- a modified value -] ← loaded from source3
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Layers:**
|
|
||||||
> - name1
|
|
||||||
> - name2
|
|
||||||
> - name3
|
|
||||||
> - name4
|
|
||||||
Variables:
|
|
||||||
- :notebook: dynamics (a dynamics variable):
|
|
||||||
- <span style="color: #006400">metaconfig2</span> (:hourglass_flowing_sand: metaconfig2 :hourglass_flowing_sand: metaconfig2)
|
|
||||||
- <span style="color: #006400">metaconfig1</span> (:hourglass_flowing_sand: metaconfig1)
|
|
||||||
- <span style="color: #006400">config</span>
|
|
||||||
- :open_file_folder: dynmetaconfig2
|
|
||||||
- :notebook: a_variable (my variable only to test): <span style="color: #006400">a modified value</span> ← loaded from source1 (:hourglass_flowing_sand: a value)
|
|
||||||
- :open_file_folder: dynmetaconfig1
|
|
||||||
- :notebook: a_variable (my variable only to test): <span style="color: #006400">a modified value</span> ← loaded from source2
|
|
||||||
- :open_file_folder: dynconfig
|
|
||||||
- :notebook: a_variable (my variable only to test): <span style="color: #006400">a modified value</span> ← loaded from source3
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
╭─ Layers ─╮
|
|
||||||
│ • name1 │
|
|
||||||
│ • name2 │
|
|
||||||
│ • name3 │
|
|
||||||
│ • name4 │
|
|
||||||
╰──────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┣━━ [0m📓 dynamics (a dynamics variable):
|
|
||||||
[94m┃ [0m[94m┣━━ [0m[32mmetaconfig2[0m (⏳ metaconfig2 ⏳ metaconfig2)
|
|
||||||
[94m┃ [0m[94m┣━━ [0m[32mmetaconfig1[0m (⏳ metaconfig1)
|
|
||||||
[94m┃ [0m[94m┗━━ [0m[32mconfig[0m
|
|
||||||
[94m┣━━ [0m📂 dynmetaconfig2
|
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ loaded from source1 (⏳ a value)
|
|
||||||
[94m┣━━ [0m📂 dynmetaconfig1
|
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ loaded from source2
|
|
||||||
[94m┗━━ [0m📂 dynconfig
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ loaded from source3
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
version: 1.1
|
|
||||||
|
|
||||||
dynamics: [] # a dynamics variable
|
|
||||||
|
|
||||||
dyn{{ identifier }}:
|
|
||||||
dynamic:
|
|
||||||
variable: _.dynamics
|
|
||||||
|
|
||||||
a_variable: a value # my variable only to test
|
|
||||||
...
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -6,4 +6,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,4 @@
|
||||||
╰─────────────────────────╯
|
╰─────────────────────────╯
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,5 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📂 the first family
|
[94m┣━━ [0m📂 the first family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┣━━ [0m📂 the second family
|
[94m┗━━ [0m📂 the second family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [+ Default value +]
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #B8860B">Default value</span>
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #B8860B">My%Val;ue$#!1su:</span>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
╭─────── Caption ────────╮
|
|
||||||
│ Variable [38;5;220mDefault value[0m │
|
|
||||||
╰────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [38;5;220mMy%Val;ue$#!1su:[0m
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [+ null +]
|
- :notebook: the first variable: [+ null +]
|
||||||
- :notebook: the second variable: [+ null +]
|
- :notebook: the second variable: [+ null +]
|
||||||
- :notebook: the third variable with spaces: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the third variable with spaces: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
[94m [0m[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [38;5;220mnull[0m
|
[94m [0m[94m┗━━ [0m📓 the second variable: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [+ Default value +]
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #B8860B">Default value</span>
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #B8860B">My%Val;ue$#!1su:</span>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
╭─────── Caption ────────╮
|
|
||||||
│ Variable [38;5;220mDefault value[0m │
|
|
||||||
╰────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [38;5;220mMy%Val;ue$#!1su:[0m
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [+ null +]
|
- :notebook: the first variable: [+ null +]
|
||||||
- :notebook: the second variable: [+ null +]
|
- :notebook: the second variable: [+ null +]
|
||||||
- :notebook: the third variable with spaces: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the third variable with spaces: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
[94m [0m[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [38;5;220mnull[0m
|
[94m [0m[94m┗━━ [0m📓 the second variable: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :open_file_folder: Rougail
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📂 Rougail
|
|
||||||
[94m [0m[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -7,4 +7,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,3 @@ Variables:
|
||||||
- :open_file_folder: Rougail
|
- :open_file_folder: Rougail
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,4 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,5 @@ Variables:
|
||||||
[94m┗━━ [0m📂 Rougail
|
[94m┗━━ [0m📂 Rougail
|
||||||
[94m [0m[94m┣━━ [0m📂 the first family
|
[94m [0m[94m┣━━ [0m📂 the first family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┣━━ [0m📂 the second family
|
[94m [0m[94m┗━━ [0m📂 the second family
|
||||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m [0m[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -6,4 +6,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,4 @@
|
||||||
╰─────────────────────────╯
|
╰─────────────────────────╯
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,5 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📂 the first family
|
[94m┣━━ [0m📂 the first family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┣━━ [0m📂 the second family
|
[94m┗━━ [0m📂 the second family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m┗━━ [0m📓 A variable: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [+ Default value +]
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #B8860B">Default value</span>
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: <span style="color: #B8860B">My%Val;ue$#!1su:</span>
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
╭─────── Caption ────────╮
|
|
||||||
│ Variable [38;5;220mDefault value[0m │
|
|
||||||
╰────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📓 a first variable: [38;5;220mMy%Val;ue$#!1su:[0m
|
|
||||||
|
|
@ -6,4 +6,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: [+ null +]
|
- :notebook: the first variable: [+ null +]
|
||||||
- :notebook: the second variable: [+ null +]
|
- :notebook: the second variable: [+ null +]
|
||||||
- :notebook: the third variable with spaces: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
- :notebook: the first variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
- :notebook: the second variable: <span style="color: #B8860B">null</span>
|
||||||
- :notebook: the third variable with spaces: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,4 @@
|
||||||
╰────────────────────────╯
|
╰────────────────────────╯
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
[94m┣━━ [0m📓 the first variable: [38;5;220mnull[0m
|
||||||
[94m┣━━ [0m📓 the second variable: [38;5;220mnull[0m
|
[94m┗━━ [0m📓 the second variable: [38;5;220mnull[0m
|
||||||
[94m┗━━ [0m📓 the third variable with spaces: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,3 @@ Variables:
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [+ null +]
|
- :notebook: var: [+ null +]
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [+ null +]
|
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,3 @@ Variables:
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: <span style="color: #B8860B">null</span>
|
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: <span style="color: #B8860B">null</span>
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,5 @@
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📂 the first family
|
[94m┣━━ [0m📂 the first family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m┣━━ [0m📂 the second family
|
[94m┗━━ [0m📂 the second family
|
||||||
[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||||
[94m┗━━ [0m📂 the third family with space
|
|
||||||
[94m [0m[94m┗━━ [0m📓 A variable: [38;5;220mnull[0m
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
> [!note] Caption:
|
|
||||||
>
|
|
||||||
> - Variable
|
|
||||||
> - [- Modified value -]
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
> [!NOTE]
|
|
||||||
>
|
|
||||||
> **Caption:**
|
|
||||||
> - Variable
|
|
||||||
> - <span style="color: #006400">Modified value</span>
|
|
||||||
> - (:hourglass_flowing_sand: Original default value)
|
|
||||||
|
|
||||||
Variables:
|
|
||||||
- :notebook: a first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test (:hourglass_flowing_sand: My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
╭────────────── Caption ───────────────╮
|
|
||||||
│ Variable [32mModified value[0m │
|
|
||||||
│ (⏳ Original default value) │
|
|
||||||
╰──────────────────────────────────────╯
|
|
||||||
Variables:
|
|
||||||
[94m┗━━ [0m📓 a first variable: [32mstring1[0m ◀ loaded from rougail-test (⏳ My%Val;ue$#!1su:)
|
|
||||||
|
|
@ -6,4 +6,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the first variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
- :notebook: the second variable: [- string1 -] ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@
|
||||||
Variables:
|
Variables:
|
||||||
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the first variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
- :notebook: the second variable: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||||
- :notebook: the third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,4 @@
|
||||||
╰─────────────────────────╯
|
╰─────────────────────────╯
|
||||||
Variables:
|
Variables:
|
||||||
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┣━━ [0m📓 the first variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┣━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
[94m┗━━ [0m📓 the second variable: [32mstring1[0m ◀ loaded from rougail-test
|
||||||
[94m┗━━ [0m📓 the third variable with spaces: [32mstring1[0m ◀ loaded from rougail-test
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,3 @@ Variables:
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the second family
|
- :open_file_folder: the second family
|
||||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||||
- :open_file_folder: the third family with space
|
|
||||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue