Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58a9c7bd0a | |||
| 22c429e902 | |||
| 5adf14feb9 | |||
| 50c7a61335 |
121 changed files with 580 additions and 50 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,3 +1,14 @@
|
|||
## 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)
|
||||
|
||||
### Feat
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_display"
|
||||
version = "1.0.0"
|
||||
version = "1.1.0"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output display"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.2.0a19"
|
||||
__version__ = "1.1.0"
|
||||
|
|
|
|||
|
|
@ -84,11 +84,7 @@ 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.')}
|
||||
disabled:
|
||||
jinja: |-
|
||||
{{% if step.output is propertyerror or step.output != 'display' %}}
|
||||
true
|
||||
{{% else %}}
|
||||
false
|
||||
{{% endif %}}
|
||||
{{{{ step.output is propertyerror or step.output != 'display' }}}}
|
||||
return_type: boolean
|
||||
description: {_('if display is not set in "step.output"')}
|
||||
|
||||
|
|
|
|||
|
|
@ -112,7 +112,8 @@ class CommonOutput:
|
|||
None, {}
|
||||
).setdefault(description, []).append((msg, level))
|
||||
else:
|
||||
errors_dict.setdefault(None, []).append(error)
|
||||
# Shoud not exist, error should always be a dict
|
||||
errors_dict.setdefault(None, {}).setdefault(None, []).append((error, level))
|
||||
|
||||
def subconfig_to_dict(self, subconfig: "Subconfig", errors_dict: dict) -> dict:
|
||||
# FIXME a tester : mandatories dans une arborescence (voir si ca n'ecrase pas)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
> [!CAUTION]
|
||||
>
|
||||
> - cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||
> - variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||
> - <span style='color: -'>:stop_sign: cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data</span>
|
||||
> - <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>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
> [!CAUTION]
|
||||
>
|
||||
> - cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||
> - variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||
> - <span style='color: #C23636'>:stop_sign: cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data</span>
|
||||
> - <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>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
[1;91m🛑 Caution[0m
|
||||
[91m┣━━ [0mcannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data
|
||||
[91m┗━━ [0mvariable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data
|
||||
[91m┣━━ [0m[91m🛑 cannot load variable path "dynVal3.val", the identifier "Val3" is not valid in fake user data[0m
|
||||
[91m┗━━ [0m[91m🛑 variable or family "dynVal3" does not exist so cannot load "dynVal3.val", it has been loading from fake user data[0m
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
> [!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
|
||||
25
tests/layers-dyn-values-metaconfig-mix-results/display.md
Normal file
25
tests/layers-dyn-values-metaconfig-mix-results/display.md
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
> [!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
|
||||
21
tests/layers-dyn-values-metaconfig-mix-results/display.sh
Normal file
21
tests/layers-dyn-values-metaconfig-mix-results/display.sh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
╭────────────── 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
|
||||
12
tests/layers_dyn/rougail/00-file.yml
Normal file
12
tests/layers_dyn/rougail/00-file.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
%YAML 1.2
|
||||
---
|
||||
version: 1.1
|
||||
|
||||
dynamics: [] # a dynamics variable
|
||||
|
||||
dyn{{ identifier }}:
|
||||
dynamic:
|
||||
variable: _.dynamics
|
||||
|
||||
a_variable: a value # my variable only to test
|
||||
...
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
> [!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:)
|
||||
9
tests/results/test/00_2default_with_exclamation.md
Normal file
9
tests/results/test/00_2default_with_exclamation.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
6
tests/results/test/00_2default_with_exclamation.sh
Normal file
6
tests/results/test/00_2default_with_exclamation.sh
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
╭────────────── 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,3 +6,4 @@
|
|||
Variables:
|
||||
- :notebook: the first 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,3 +7,4 @@
|
|||
Variables:
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -3,4 +3,5 @@
|
|||
╰─────────────────────────╯
|
||||
Variables:
|
||||
[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,3 +8,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -9,3 +9,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +4,7 @@
|
|||
Variables:
|
||||
[94m┣━━ [0m📂 the first family
|
||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
10
tests/results/test_namespace/00_2default_with_exclamation.md
Normal file
10
tests/results/test_namespace/00_2default_with_exclamation.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
╭────────────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -4,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
╭────────────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -4,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
> [!note] Caption:
|
||||
>
|
||||
> - Variable
|
||||
> - [+ Default value +]
|
||||
|
||||
Variables:
|
||||
- :open_file_folder: Rougail
|
||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
╭─────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first variable: [+ null +]
|
||||
- :notebook: the second variable: [+ null +]
|
||||
- :notebook: the third variable with spaces: [+ null +]
|
||||
|
|
|
|||
|
|
@ -8,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [+ null +]
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
╭────────────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -4,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
> [!note] Caption:
|
||||
>
|
||||
> - Variable
|
||||
> - [+ Default value +]
|
||||
|
||||
Variables:
|
||||
- :open_file_folder: Rougail
|
||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
╭─────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first variable: [+ null +]
|
||||
- :notebook: the second variable: [+ null +]
|
||||
- :notebook: the third variable with spaces: [+ null +]
|
||||
|
|
|
|||
|
|
@ -8,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [+ null +]
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
╭────────────── 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,3 +7,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :notebook: the first 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,3 +8,4 @@ Variables:
|
|||
- :open_file_folder: Rougail
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -4,4 +4,5 @@
|
|||
Variables:
|
||||
[94m┗━━ [0m📂 Rougail
|
||||
[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,3 +9,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -10,3 +10,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +5,7 @@ Variables:
|
|||
[94m┗━━ [0m📂 Rougail
|
||||
[94m [0m[94m┣━━ [0m📂 the first family
|
||||
[94m [0m[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m [0m[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
╭────────────── 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,3 +6,4 @@
|
|||
Variables:
|
||||
- :notebook: the first 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,3 +7,4 @@
|
|||
Variables:
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -3,4 +3,5 @@
|
|||
╰─────────────────────────╯
|
||||
Variables:
|
||||
[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,3 +8,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [- string1 -] ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -9,3 +9,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +4,7 @@
|
|||
Variables:
|
||||
[94m┣━━ [0m📂 the first family
|
||||
[94m┃ [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m┗━━ [0m📓 var: [32mstring1[0m ◀ loaded from rougail-test
|
||||
[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
> [!note] Caption:
|
||||
>
|
||||
> - Variable
|
||||
> - [+ Default value +]
|
||||
|
||||
Variables:
|
||||
- :notebook: a first variable: [+ My%Val;ue$#!1su: +]
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
> [!NOTE]
|
||||
>
|
||||
> **Caption:**
|
||||
> - Variable
|
||||
> - <span style="color: #B8860B">Default value</span>
|
||||
|
||||
Variables:
|
||||
- :notebook: a first variable: <span style="color: #B8860B">My%Val;ue$#!1su:</span>
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
╭─────── Caption ────────╮
|
||||
│ Variable [38;5;220mDefault value[0m │
|
||||
╰────────────────────────╯
|
||||
Variables:
|
||||
[94m┗━━ [0m📓 a first variable: [38;5;220mMy%Val;ue$#!1su:[0m
|
||||
|
|
@ -6,3 +6,4 @@
|
|||
Variables:
|
||||
- :notebook: the first variable: [+ null +]
|
||||
- :notebook: the second variable: [+ null +]
|
||||
- :notebook: the third variable with spaces: [+ null +]
|
||||
|
|
|
|||
|
|
@ -7,3 +7,4 @@
|
|||
Variables:
|
||||
- :notebook: the first 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,4 +3,5 @@
|
|||
╰────────────────────────╯
|
||||
Variables:
|
||||
[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,3 +8,5 @@ Variables:
|
|||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the second family
|
||||
- :notebook: var: [+ null +]
|
||||
- :open_file_folder: the third family with space
|
||||
- :notebook: A variable: [+ null +]
|
||||
|
|
|
|||
|
|
@ -9,3 +9,5 @@ Variables:
|
|||
- :notebook: var: <span style="color: #B8860B">null</span>
|
||||
- :open_file_folder: the second family
|
||||
- :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,5 +4,7 @@
|
|||
Variables:
|
||||
[94m┣━━ [0m📂 the first family
|
||||
[94m┃ [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m┗━━ [0m📂 the second family
|
||||
[94m [0m[94m┗━━ [0m📓 var: [38;5;220mnull[0m
|
||||
[94m┣━━ [0m📂 the second family
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
> [!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:)
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
╭────────────── 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,3 +6,4 @@
|
|||
Variables:
|
||||
- :notebook: the first 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,3 +7,4 @@
|
|||
Variables:
|
||||
- :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 third variable with spaces: <span style="color: #006400">string1</span> ← loaded from rougail-test
|
||||
|
|
|
|||
|
|
@ -3,4 +3,5 @@
|
|||
╰─────────────────────────╯
|
||||
Variables:
|
||||
[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,3 +8,5 @@ Variables:
|
|||
- :notebook: var: [- string1 -] ← loaded from rougail-test
|
||||
- :open_file_folder: the second family
|
||||
- :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